Preserve protocol in short links
This commit is contained in:
parent
9fb382eaa9
commit
77fee91785
1 changed files with 2 additions and 1 deletions
|
@ -121,7 +121,8 @@ L.OSM.Map = L.Map.extend({
|
|||
var zoom = this.getZoom(),
|
||||
latLng = marker && this.hasLayer(marker) ? marker.getLatLng().wrap() : this.getCenter().wrap(),
|
||||
str = window.location.hostname.match(/^www\.openstreetmap\.org/i) ?
|
||||
'http://osm.org/go/' : 'http://' + window.location.hostname + '/go/',
|
||||
window.location.protocol + '://osm.org/go/' :
|
||||
window.location.protocol + '://' + window.location.hostname + '/go/',
|
||||
char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_~",
|
||||
x = Math.round((latLng.lng + 180.0) * ((1 << 30) / 90.0)),
|
||||
y = Math.round((latLng.lat + 90.0) * ((1 << 30) / 45.0)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue