You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Possibility to add custom variables in locations (Now extended to KML source)
- Allowing originMarker regardless of fullMapStart has been set
- Adds originMarker to bounds, when zoomLevel is 0, to give a better context of distance
// Promote setting a locdescription key for a singular description to use in templates instead, as some KML generators (like Google Maps Engine) populates the generic description including all key: values set.
424
+
'description': $this.find('description').text()
424
425
};
426
+
427
+
$this.find('displayName').each(function(){
428
+
varthisDataKey=$(this).text(),
429
+
thisDataVal=$(this).next().text();
430
+
locationData[thisDataKey]=thisDataVal;
431
+
});
432
+
433
+
if(locationData['web'])locationData['web']=locationData['web'].replace("http://","");// Remove scheme (todo: should NOT be done)
0 commit comments