map.updateSize();
});
+ $("#" + divName).trigger("initialised");
+
return map;
}
return marker;
}
-function addObjectToMap(url, zoom, callback) {
+function addObjectToMap(object, zoom, callback) {
var layer = new OpenLayers.Layer.Vector("Objects", {
strategies: [
new OpenLayers.Strategy.Fixed()
],
protocol: new OpenLayers.Protocol.HTTP({
- url: url,
+ url: OSM.apiUrl(object),
format: new OpenLayers.Format.OSM()
}),
style: {
function closeMapPopup() {
if (popup) {
map.removePopup(popup);
- delete popup;
}
}
}
function getEventPosition(event) {
- return map.getLonLatFromViewPortPx(event.xy).clone().transform(map.getProjectionObject(), epsg4326);
+ return unproj(map.getLonLatFromViewPortPx(event.xy));
}
function getMapLayers() {