-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leaflet 1.3.0, leaflet.draw 1.0, google-layer using new Leaflet.Gridl…
…ayer.GoogleMutant, various updates to support new libraries thx https://github.com/McBen/ingress-intel-total-conversion/ #3
- Loading branch information
Showing
42 changed files
with
17,892 additions
and
10,461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,88 @@ | ||
.leaflet-control-minimap { | ||
border:solid rgba(255, 255, 255, 0.7) 3px; | ||
box-shadow: 0 1px 7px #999; | ||
background: #f8f8f9; | ||
-moz-border-radius: 8px; | ||
-webkit-border-radius: 8px; | ||
border-radius: 8px; | ||
border:solid rgba(255, 255, 255, 1.0) 4px; | ||
box-shadow: 0 1px 5px rgba(0,0,0,0.65); | ||
border-radius: 3px; | ||
background: #f8f8f9; | ||
transition: all .6s; | ||
} | ||
|
||
.leaflet-control-minimap a { | ||
background-color: rgba(255, 255, 255, 0.75); | ||
background-position: 1px 2px; | ||
background-repeat: no-repeat; | ||
display: block; | ||
outline: none; | ||
z-index: 99999; | ||
background-color: rgba(255, 255, 255, 1.0); | ||
background-repeat: no-repeat; | ||
z-index: 99999; | ||
transition: all .6s; | ||
} | ||
|
||
.leaflet-control-minimap a.minimized { | ||
background-position: 1px -18px; | ||
.leaflet-control-minimap a.minimized-bottomright { | ||
-webkit-transform: rotate(180deg); | ||
transform: rotate(180deg); | ||
border-radius: 0px; | ||
} | ||
|
||
.leaflet-control-minimap-toggle-display { | ||
background-image: url(@@INCLUDEIMAGE:images/minimap-toggle.png@@); | ||
border-radius: 4px 4px 4px 4px; | ||
height: 19px; | ||
width: 19px; | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
.leaflet-control-minimap a.minimized-topleft { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
border-radius: 0px; | ||
} | ||
.leaflet-left .leaflet-control-minimap-toggle-display { | ||
left: 0; | ||
right: auto; | ||
transform: scaleX(-1); | ||
|
||
.leaflet-control-minimap a.minimized-bottomleft { | ||
-webkit-transform: rotate(270deg); | ||
transform: rotate(270deg); | ||
border-radius: 0px; | ||
} | ||
|
||
.leaflet-control-minimap a.minimized-topright { | ||
-webkit-transform: rotate(90deg); | ||
transform: rotate(90deg); | ||
border-radius: 0px; | ||
} | ||
|
||
.leaflet-control-minimap-toggle-display{ | ||
background-image: url(@@INCLUDEIMAGE:images/minimap-toggle.png@@); | ||
background-size: cover; | ||
position: absolute; | ||
border-radius: 3px 0px 0px 0px; | ||
} | ||
|
||
.leaflet-oldie .leaflet-control-minimap-toggle-display{ | ||
background-image: url(@@INCLUDEIMAGE:images/minimap-toggle.png@@); | ||
} | ||
|
||
.leaflet-control-minimap-toggle-display-bottomright { | ||
bottom: 0; | ||
right: 0; | ||
} | ||
.leaflet-top .leaflet-control-minimap-toggle-display { | ||
bottom: auto; | ||
top: 0; | ||
transform: scaleY(-1); | ||
|
||
.leaflet-control-minimap-toggle-display-topleft{ | ||
top: 0; | ||
left: 0; | ||
-webkit-transform: rotate(180deg); | ||
transform: rotate(180deg); | ||
} | ||
.leaflet-top.leaflet-left .leaflet-control-minimap-toggle-display { | ||
transform: scaleY(-1) scaleX(-1); | ||
|
||
.leaflet-control-minimap-toggle-display-bottomleft{ | ||
bottom: 0; | ||
left: 0; | ||
-webkit-transform: rotate(90deg); | ||
transform: rotate(90deg); | ||
} | ||
|
||
.leaflet-control-minimap-toggle-display-topright{ | ||
top: 0; | ||
right: 0; | ||
-webkit-transform: rotate(270deg); | ||
transform: rotate(270deg); | ||
} | ||
|
||
/* Old IE */ | ||
.leaflet-oldie .leaflet-control-minimap { | ||
border: 1px solid #999; | ||
} | ||
|
||
.leaflet-oldie .leaflet-control-minimap a { | ||
background-color: #fff; | ||
} | ||
|
||
.leaflet-oldie .leaflet-control-minimap a.minimized { | ||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); | ||
} |
Oops, something went wrong.
This probaly shoul be removed, like line 187