Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New arch 1st step: add a plugin name #124

Merged
merged 3 commits into from
Nov 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 22 additions & 29 deletions examples/advanced/dataviz_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,6 @@
<title>Dataviz example with jQuery Mapael</title>
<meta charset="utf-8"/>
<style type="text/css">
.mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.80;
opacity: 0.80;
filter: alpha(opacity=80);
border-radius: 4px;
padding: 10px;
z-index: 1000;
max-width: 200px;
display: none;
color: #232323;
}

.cityFrance {
background-color: #343434;
border-radius: 10px;
width: 400px;
}

.mapLegend {
}

.map {
position: relative;
}

h1 {
font-size: 30px;
Expand Down Expand Up @@ -73,15 +47,34 @@
margin-left: 5px;
}

.map {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.80;
opacity: 0.80;
filter: alpha(opacity=80);
border-radius: 4px;
padding: 10px;
z-index: 1000;
max-width: 200px;
display: none;
color: #232323;
}

.mapael .map {
margin-right: 228px;
overflow: hidden;
position: relative;
background-color: #232323;
border-radius: 5px;
}

.zoomIn, .zoomOut {
.mapael .zoomIn,
.mapael .zoomOut {
background-color: #dbdbdb;
border: 1px solid #cfcfcf;
color: #161616;
Expand All @@ -103,7 +96,7 @@
user-select: none;
}

.zoomOut {
.mapael .zoomOut {
top: 35px;
}
</style>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,24 @@
margin: auto;
}

.map {
.myText {
background-color: #343434;
height: 100px;
padding: 10px;
color: #fff;
overflow: auto;
margin: 10px;
}

/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .map {
position: relative;
}

.mapTooltip {
.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand All @@ -37,15 +50,6 @@
display: none;
color: #343434;
}

.myText {
background-color: #343434;
height: 100px;
padding: 10px;
color: #fff;
overflow: auto;
margin: 10px;
}
</style>

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js" charset="utf-8"></script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
margin: auto;
}

.mapTooltip {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand All @@ -35,7 +39,8 @@
color: #343434;
}

.zoomIn, .zoomOut {
.mapael .zoomIn,
.mapael .zoomOut {
background-color: #fff;
border: 1px solid #ccc;
color: #000;
Expand All @@ -56,11 +61,11 @@
user-select: none;
}

.zoomOut {
.mapael .zoomOut {
top: 30px;
}

.map {
.mapael .map {
position: relative;
}
</style>
Expand Down
21 changes: 13 additions & 8 deletions examples/advanced/initial_zoom_level_on_a_specific_position.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@
margin: auto;
}

.mapTooltip {
.mapcontainer {
margin: 10px;
}

/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand All @@ -34,7 +42,8 @@
color: #343434;
}

.zoomIn, .zoomOut {
.mapael .zoomIn,
.mapael .zoomOut {
background-color: #fff;
border: 1px solid #ccc;
color: #000;
Expand All @@ -56,18 +65,14 @@
user-select: none;
}

.zoomOut {
.mapael .zoomOut {
top: 30px;
}

.map {
.mapael .map {
position: relative;
background-color: #cddee0;
}

.mapcontainer {
margin: 10px;
}
</style>

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js" charset="utf-8"></script>
Expand Down
8 changes: 6 additions & 2 deletions examples/advanced/legend_show_hide.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@
margin: auto;
}

.map {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .map {
position: relative;
}

.mapTooltip {
.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand Down
8 changes: 6 additions & 2 deletions examples/advanced/links_between_plotted_cities.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@
margin: auto;
}

.map {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .map {
position: relative;
}

.mapTooltip {
.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand Down
9 changes: 6 additions & 3 deletions examples/advanced/multiple_legends_plotted_cities.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,16 @@
margin: auto;
}

.map {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .map {
position: relative;
margin-bottom: 10px;
}

/* CSS for the tooltip displayed on mousehover on elements */
.mapTooltip {
.mapael .mapTooltip {
position: absolute;
background-color: #474c4b;
moz-opacity: 0.70;
Expand Down
13 changes: 9 additions & 4 deletions examples/advanced/update_event_for_refreshing_elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
margin: auto;
}

.mapTooltip {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand All @@ -34,7 +38,8 @@
color: #343434;
}

.zoomIn, .zoomOut {
.mapael .zoomIn,
.mapael .zoomOut {
background-color: #fff;
border: 1px solid #ccc;
color: #000;
Expand All @@ -56,11 +61,11 @@
user-select: none;
}

.zoomOut {
.mapael .zoomOut {
top: 30px;
}

.map {
.mapael .map {
background-color: #cddee0;
margin: 10px;
position: relative;
Expand Down
13 changes: 9 additions & 4 deletions examples/advanced/updates_on_links_performed.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@
margin: auto;
}

.map {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .map {
position: relative;
}

.mapTooltip {
.mapael .mapTooltip {
position: fixed;
background-color: #fff;
moz-opacity: 0.70;
Expand All @@ -38,7 +42,8 @@
color: #343434;
}

.zoomIn, .zoomOut {
.mapael .zoomIn,
.mapael .zoomOut {
background-color: #fff;
border: 1px solid #ccc;
color: #000;
Expand All @@ -60,7 +65,7 @@
user-select: none;
}

.zoomOut {
.mapael .zoomOut {
top: 30px;
}
</style>
Expand Down
13 changes: 9 additions & 4 deletions examples/advanced/zoom_event_on_specific_area.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
margin: auto;
}

.mapTooltip {
/* Specific mapael css class are below
* 'mapael' class is added by plugin
*/

.mapael .mapTooltip {
position: absolute;
background-color: #fff;
moz-opacity: 0.70;
Expand All @@ -34,7 +38,8 @@
color: #343434;
}

.zoomIn, .zoomOut {
.mapael .zoomIn,
.mapael .zoomOut {
background-color: #fff;
border: 1px solid #ccc;
color: #000;
Expand All @@ -56,11 +61,11 @@
user-select: none;
}

.zoomOut {
.mapael .zoomOut {
top: 30px;
}

.map {
.mapael .map {
position: relative;
}

Expand Down
Loading