2020-06-05 00:22:41 +02:00
|
|
|
'use strict';
|
|
|
|
|
2020-06-01 21:13:02 +02:00
|
|
|
(function () {
|
|
|
|
var MapEditor = {
|
2020-06-06 02:18:12 +02:00
|
|
|
metadata: {
|
|
|
|
name: null,
|
|
|
|
description: null
|
|
|
|
},
|
2020-06-01 21:13:02 +02:00
|
|
|
map: null,
|
2020-06-11 23:23:28 +02:00
|
|
|
markers: null,
|
2020-06-01 21:13:02 +02:00
|
|
|
panorama: null,
|
|
|
|
selectedMarker: null,
|
2020-06-05 00:22:41 +02:00
|
|
|
added: {},
|
|
|
|
edited: {},
|
|
|
|
deleted: {},
|
2020-06-01 21:13:02 +02:00
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
editMetadata: function () {
|
|
|
|
var form = document.getElementById('metadataForm');
|
|
|
|
|
|
|
|
MapEditor.metadata.name = form.elements.name.value;
|
|
|
|
MapEditor.metadata.description = form.elements.description.value;
|
|
|
|
|
|
|
|
document.getElementById('mapName').innerHTML = form.elements.name.value ? form.elements.name.value : '[unnamed map]';
|
|
|
|
|
|
|
|
document.getElementById('metadata').style.visibility = 'hidden';
|
|
|
|
|
|
|
|
document.getElementById('saveButton').disabled = false;
|
|
|
|
},
|
|
|
|
|
2020-06-03 23:41:08 +02:00
|
|
|
getPlace: function (placeId, marker) {
|
2020-06-13 22:39:44 +02:00
|
|
|
MapGuesser.httpRequest('GET', '/admin/place.json/' + placeId, function () {
|
2020-06-02 21:44:01 +02:00
|
|
|
document.getElementById('loading').style.visibility = 'hidden';
|
|
|
|
|
|
|
|
if (!this.response.panoId) {
|
|
|
|
document.getElementById('noPano').style.visibility = 'visible';
|
2020-06-03 23:41:08 +02:00
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
places[marker.placeId].panoId = -1;
|
|
|
|
places[marker.placeId].noPano = true;
|
2020-06-03 23:41:08 +02:00
|
|
|
|
2020-06-02 21:44:01 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
places[marker.placeId].panoId = this.response.panoId;
|
|
|
|
places[marker.placeId].noPano = false;
|
|
|
|
|
|
|
|
MapEditor.loadPano(this.response.panoId, places[marker.placeId].pov);
|
2020-06-13 22:39:44 +02:00
|
|
|
});
|
2020-06-02 21:44:01 +02:00
|
|
|
},
|
2020-06-01 21:13:02 +02:00
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
loadPano: function (panoId, pov) {
|
2020-06-01 21:13:02 +02:00
|
|
|
MapEditor.panorama.setVisible(true);
|
2020-06-05 00:22:41 +02:00
|
|
|
MapEditor.panorama.setPov({ heading: pov.heading, pitch: pov.pitch });
|
|
|
|
MapEditor.panorama.setZoom(pov.zoom);
|
2020-06-02 21:44:01 +02:00
|
|
|
MapEditor.panorama.setPano(panoId);
|
2020-06-01 21:13:02 +02:00
|
|
|
},
|
|
|
|
|
2020-06-04 19:30:35 +02:00
|
|
|
loadPanoForNewPlace: function (panoLocationData) {
|
2020-06-05 00:22:41 +02:00
|
|
|
var placeId = MapEditor.selectedMarker.placeId;
|
|
|
|
|
2020-06-04 19:30:35 +02:00
|
|
|
if (!panoLocationData) {
|
2020-06-05 00:22:41 +02:00
|
|
|
places[placeId].panoId = -1;
|
|
|
|
places[placeId].noPano = true;
|
2020-06-04 19:30:35 +02:00
|
|
|
|
|
|
|
document.getElementById('noPano').style.visibility = 'visible';
|
2020-06-05 00:22:41 +02:00
|
|
|
|
2020-06-04 19:30:35 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
var latLng = panoLocationData.latLng;
|
|
|
|
|
|
|
|
places[placeId].panoId = panoLocationData.pano;
|
|
|
|
places[placeId].lat = latLng.lat();
|
|
|
|
places[placeId].lng = latLng.lng();
|
|
|
|
|
|
|
|
MapEditor.selectedMarker.setLatLng({ lat: places[placeId].lat, lng: places[placeId].lng });
|
|
|
|
MapEditor.map.panTo(MapEditor.selectedMarker.getLatLng());
|
2020-06-04 19:30:35 +02:00
|
|
|
|
|
|
|
MapEditor.panorama.setVisible(true);
|
2020-06-05 00:22:41 +02:00
|
|
|
MapEditor.panorama.setPov({ heading: 0.0, pitch: 0.0 });
|
|
|
|
MapEditor.panorama.setZoom(0.0);
|
2020-06-04 19:30:35 +02:00
|
|
|
MapEditor.panorama.setPano(panoLocationData.pano);
|
|
|
|
},
|
|
|
|
|
|
|
|
requestPanoData: function (location, canBeIndoor) {
|
|
|
|
var sv = new google.maps.StreetViewService();
|
|
|
|
|
|
|
|
sv.getPanorama({
|
|
|
|
location: location,
|
|
|
|
preference: google.maps.StreetViewPreference.NEAREST,
|
2020-06-05 00:22:41 +02:00
|
|
|
radius: 100,
|
2020-06-04 19:30:35 +02:00
|
|
|
source: canBeIndoor ? google.maps.StreetViewSource.DEFAULT : google.maps.StreetViewSource.OUTDOOR
|
|
|
|
}, function (data, status) {
|
|
|
|
var panoLocationData = status === google.maps.StreetViewStatus.OK ? data.location : null;
|
|
|
|
|
|
|
|
if (panoLocationData === null && !canBeIndoor) {
|
|
|
|
MapEditor.requestPanoData(location, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('loading').style.visibility = 'hidden';
|
|
|
|
|
|
|
|
MapEditor.loadPanoForNewPlace(panoLocationData);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-06-01 21:13:02 +02:00
|
|
|
select: function (marker) {
|
2020-06-05 00:22:41 +02:00
|
|
|
if (MapEditor.selectedMarker === marker) {
|
2020-06-06 02:18:12 +02:00
|
|
|
MapEditor.closePlace();
|
2020-06-05 00:22:41 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-06-01 21:13:02 +02:00
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
document.getElementById('metadata').classList.add('selected');
|
2020-06-01 21:13:02 +02:00
|
|
|
document.getElementById('map').classList.add('selected');
|
2020-06-02 21:49:37 +02:00
|
|
|
document.getElementById('control').classList.add('selected');
|
2020-06-01 21:13:02 +02:00
|
|
|
document.getElementById('noPano').style.visibility = 'hidden';
|
2020-06-02 21:49:37 +02:00
|
|
|
document.getElementById('panorama').style.visibility = 'visible';
|
2020-06-01 21:13:02 +02:00
|
|
|
document.getElementById('placeControl').style.visibility = 'visible';
|
|
|
|
|
|
|
|
MapEditor.resetSelected();
|
|
|
|
MapEditor.selectedMarker = marker;
|
|
|
|
|
|
|
|
MapEditor.map.invalidateSize(true);
|
|
|
|
MapEditor.map.panTo(marker.getLatLng());
|
|
|
|
|
|
|
|
MapEditor.panorama.setVisible(false);
|
|
|
|
|
2020-06-04 19:30:35 +02:00
|
|
|
if (marker.placeId) {
|
2020-06-11 23:23:28 +02:00
|
|
|
MapEditor.markers.removeLayer(MapEditor.selectedMarker);
|
|
|
|
MapEditor.map.addLayer(MapEditor.selectedMarker);
|
2020-06-05 00:22:41 +02:00
|
|
|
marker.setIcon(IconCollection.iconBlue);
|
|
|
|
marker.setZIndexOffset(2000);
|
|
|
|
|
|
|
|
document.getElementById('deleteButton').style.display = 'block';
|
|
|
|
|
|
|
|
if (places[marker.placeId].panoId) {
|
|
|
|
if (places[marker.placeId].panoId === -1) {
|
|
|
|
document.getElementById('noPano').style.visibility = 'visible';
|
|
|
|
} else {
|
|
|
|
MapEditor.loadPano(places[marker.placeId].panoId, places[marker.placeId].pov);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('loading').style.visibility = 'visible';
|
|
|
|
|
2020-06-04 19:30:35 +02:00
|
|
|
MapEditor.getPlace(marker.placeId, marker);
|
|
|
|
} else {
|
2020-06-05 00:22:41 +02:00
|
|
|
marker.placeId = 'new_' + new Date().getTime();
|
|
|
|
|
|
|
|
var latLng = marker.getLatLng();
|
|
|
|
|
|
|
|
places[marker.placeId] = { id: null, lat: latLng.lat, lng: latLng.lng, panoId: null, pov: { heading: 0.0, pitch: 0.0, zoom: 0 }, noPano: false };
|
|
|
|
|
|
|
|
document.getElementById('loading').style.visibility = 'visible';
|
|
|
|
|
|
|
|
MapEditor.requestPanoData(latLng);
|
2020-06-04 19:30:35 +02:00
|
|
|
}
|
2020-06-01 21:13:02 +02:00
|
|
|
},
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
resetSelected: function (del) {
|
2020-06-01 21:13:02 +02:00
|
|
|
if (!MapEditor.selectedMarker) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
var placeId = MapEditor.selectedMarker.placeId
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
if (places[placeId].id && !del) {
|
2020-06-11 23:23:28 +02:00
|
|
|
MapEditor.map.removeLayer(MapEditor.selectedMarker);
|
|
|
|
MapEditor.markers.addLayer(MapEditor.selectedMarker);
|
2020-06-05 00:22:41 +02:00
|
|
|
MapEditor.selectedMarker.setIcon(places[placeId].noPano ? IconCollection.iconRed : IconCollection.iconGreen);
|
2020-06-04 19:30:35 +02:00
|
|
|
MapEditor.selectedMarker.setZIndexOffset(1000);
|
|
|
|
} else {
|
2020-06-05 00:22:41 +02:00
|
|
|
delete places[placeId];
|
2020-06-04 19:30:35 +02:00
|
|
|
MapEditor.map.removeLayer(MapEditor.selectedMarker);
|
|
|
|
}
|
2020-06-05 00:22:41 +02:00
|
|
|
|
|
|
|
document.getElementById('deleteButton').style.display = 'none';
|
|
|
|
},
|
|
|
|
|
|
|
|
applyPlace: function () {
|
|
|
|
var placeId = MapEditor.selectedMarker.placeId;
|
|
|
|
|
|
|
|
if (!places[placeId].noPano) {
|
|
|
|
var latLng = MapEditor.panorama.getPosition();
|
|
|
|
var pov = MapEditor.panorama.getPov();
|
|
|
|
var zoom = MapEditor.panorama.getZoom();
|
|
|
|
|
|
|
|
places[placeId].lat = latLng.lat();
|
|
|
|
places[placeId].lng = latLng.lng();
|
|
|
|
places[placeId].panoId = MapEditor.panorama.getPano();
|
|
|
|
places[placeId].pov = { heading: pov.heading, pitch: pov.pitch, zoom: zoom };
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!places[placeId].id) {
|
2020-06-05 19:38:30 +02:00
|
|
|
places[placeId].id = placeId;
|
2020-06-05 00:22:41 +02:00
|
|
|
MapEditor.added[placeId] = places[placeId];
|
|
|
|
|
2020-06-05 19:38:30 +02:00
|
|
|
document.getElementById('added').innerHTML = String(Object.keys(MapEditor.added).length);
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
document.getElementById('deleteButton').style.display = 'block';
|
|
|
|
} else {
|
2020-06-05 19:38:30 +02:00
|
|
|
if (!MapEditor.added[placeId]) {
|
|
|
|
MapEditor.edited[placeId] = places[placeId];
|
|
|
|
|
|
|
|
document.getElementById('edited').innerHTML = String(Object.keys(MapEditor.edited).length);
|
|
|
|
} else {
|
|
|
|
MapEditor.added[placeId] = places[placeId];
|
|
|
|
}
|
2020-06-05 00:22:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MapEditor.selectedMarker.setLatLng({ lat: places[placeId].lat, lng: places[placeId].lng });
|
2020-06-06 02:18:12 +02:00
|
|
|
|
|
|
|
document.getElementById('saveButton').disabled = false;
|
2020-06-05 00:22:41 +02:00
|
|
|
},
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
closePlace: function (del) {
|
|
|
|
document.getElementById('metadata').classList.remove('selected')
|
2020-06-05 00:22:41 +02:00
|
|
|
document.getElementById('map').classList.remove('selected');
|
|
|
|
document.getElementById('control').classList.remove('selected');
|
|
|
|
document.getElementById('noPano').style.visibility = 'hidden';
|
|
|
|
document.getElementById('panorama').style.visibility = 'hidden';
|
|
|
|
document.getElementById('placeControl').style.visibility = 'hidden';
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
MapEditor.resetSelected(del);
|
2020-06-05 00:22:41 +02:00
|
|
|
MapEditor.selectedMarker = null;
|
|
|
|
|
|
|
|
MapEditor.map.invalidateSize(true);
|
|
|
|
},
|
|
|
|
|
|
|
|
deletePlace: function () {
|
|
|
|
var placeId = MapEditor.selectedMarker.placeId;
|
|
|
|
|
|
|
|
if (places[placeId].id && !MapEditor.added[placeId]) {
|
|
|
|
MapEditor.deleted[placeId] = places[placeId];
|
2020-06-05 19:38:30 +02:00
|
|
|
|
|
|
|
document.getElementById('deleted').innerHTML = String(Object.keys(MapEditor.deleted).length);
|
2020-06-05 00:22:41 +02:00
|
|
|
}
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
MapEditor.closePlace(true);
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
delete MapEditor.added[placeId];
|
|
|
|
delete MapEditor.edited[placeId];
|
|
|
|
|
2020-06-05 19:38:30 +02:00
|
|
|
document.getElementById('added').innerHTML = String(Object.keys(MapEditor.added).length);
|
|
|
|
document.getElementById('edited').innerHTML = String(Object.keys(MapEditor.edited).length);
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
document.getElementById('saveButton').disabled = false;
|
2020-06-05 19:38:30 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
saveMap: function () {
|
|
|
|
document.getElementById('loading').style.visibility = 'visible';
|
|
|
|
|
|
|
|
var data = new FormData();
|
2020-06-06 02:18:12 +02:00
|
|
|
|
|
|
|
if (MapEditor.metadata.name !== null) {
|
|
|
|
data.append('name', MapEditor.metadata.name);
|
|
|
|
}
|
|
|
|
if (MapEditor.metadata.description !== null) {
|
|
|
|
data.append('description', MapEditor.metadata.description);
|
|
|
|
}
|
|
|
|
|
2020-06-05 19:38:30 +02:00
|
|
|
for (var placeId in MapEditor.added) {
|
|
|
|
if (!MapEditor.added.hasOwnProperty(placeId)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
data.append('added[]', JSON.stringify(MapEditor.added[placeId]));
|
|
|
|
}
|
|
|
|
for (var placeId in MapEditor.edited) {
|
|
|
|
if (!MapEditor.edited.hasOwnProperty(placeId)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
data.append('edited[]', JSON.stringify(MapEditor.edited[placeId]));
|
|
|
|
}
|
|
|
|
for (var placeId in MapEditor.deleted) {
|
|
|
|
if (!MapEditor.deleted.hasOwnProperty(placeId)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
data.append('deleted[]', JSON.stringify(MapEditor.deleted[placeId]));
|
|
|
|
}
|
|
|
|
|
2020-06-13 22:39:44 +02:00
|
|
|
MapGuesser.httpRequest('POST', '/admin/saveMap/' + mapId + '/json', function () {
|
2020-06-05 19:38:30 +02:00
|
|
|
document.getElementById('loading').style.visibility = 'hidden';
|
|
|
|
|
|
|
|
if (this.response.error) {
|
|
|
|
//TODO: handle this error
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
MapEditor.replacePlaceIdsToReal(this.response.added);
|
|
|
|
|
2020-06-10 23:15:02 +02:00
|
|
|
if (mapId === 0) {
|
|
|
|
mapId = this.response.mapId;
|
|
|
|
window.history.replaceState(null, '', '/admin/mapEditor/' + mapId);
|
|
|
|
}
|
|
|
|
|
2020-06-05 19:38:30 +02:00
|
|
|
MapEditor.added = {};
|
|
|
|
MapEditor.edited = {};
|
|
|
|
MapEditor.deleted = {};
|
|
|
|
|
|
|
|
document.getElementById('added').innerHTML = '0';
|
|
|
|
document.getElementById('edited').innerHTML = '0';
|
|
|
|
document.getElementById('deleted').innerHTML = '0';
|
2020-06-06 02:18:12 +02:00
|
|
|
|
|
|
|
document.getElementById('saveButton').disabled = true;
|
2020-06-13 22:39:44 +02:00
|
|
|
}, data);
|
2020-06-05 19:38:30 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
replacePlaceIdsToReal: function (addedPlaces) {
|
|
|
|
for (var i = 0; i < addedPlaces.length; ++i) {
|
|
|
|
var tempId = addedPlaces[i].tempId;
|
|
|
|
var placeId = addedPlaces[i].id;
|
|
|
|
places[tempId].id = placeId;
|
|
|
|
}
|
2020-06-01 21:13:02 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-03 23:41:08 +02:00
|
|
|
var IconCollection = {
|
|
|
|
iconGreen: L.icon({
|
2020-06-12 20:13:43 +02:00
|
|
|
iconUrl: STATIC_ROOT + '/img/markers/marker-green.svg?rev' + REVISION,
|
2020-06-03 23:41:08 +02:00
|
|
|
iconSize: [24, 32],
|
|
|
|
iconAnchor: [12, 32]
|
|
|
|
}),
|
|
|
|
iconRed: L.icon({
|
2020-06-12 20:13:43 +02:00
|
|
|
iconUrl: STATIC_ROOT + '/img/markers/marker-red.svg?rev=' + REVISION,
|
2020-06-03 23:41:08 +02:00
|
|
|
iconSize: [24, 32],
|
|
|
|
iconAnchor: [12, 32]
|
|
|
|
}),
|
|
|
|
iconBlue: L.icon({
|
2020-06-12 20:13:43 +02:00
|
|
|
iconUrl: STATIC_ROOT + '/img/markers/marker-blue.svg?rev=' + REVISION,
|
2020-06-03 23:41:08 +02:00
|
|
|
iconSize: [24, 32],
|
|
|
|
iconAnchor: [12, 32]
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
2020-06-02 21:51:25 +02:00
|
|
|
var Util = {
|
|
|
|
getHighResData: function () {
|
|
|
|
if (window.devicePixelRatio >= 4) {
|
|
|
|
return { ppi: 320, tileSize: 128, zoomOffset: 1 };
|
|
|
|
} else if (window.devicePixelRatio >= 2) {
|
|
|
|
return { ppi: 250, tileSize: 256, zoomOffset: 0 };
|
|
|
|
} else {
|
|
|
|
return { ppi: 72, tileSize: 512, zoomOffset: -1 };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-01 21:13:02 +02:00
|
|
|
MapEditor.map = L.map('map', {
|
|
|
|
zoomControl: false
|
|
|
|
});
|
|
|
|
|
2020-06-04 19:30:35 +02:00
|
|
|
MapEditor.map.on('click', function (e) {
|
|
|
|
var marker = L.marker(e.latlng, {
|
|
|
|
icon: IconCollection.iconBlue,
|
2020-06-05 00:22:41 +02:00
|
|
|
zIndexOffset: 2000
|
2020-06-04 19:30:35 +02:00
|
|
|
})
|
2020-06-05 00:22:41 +02:00
|
|
|
.addTo(MapEditor.map)
|
|
|
|
.on('click', function () {
|
|
|
|
MapEditor.select(this);
|
|
|
|
});
|
2020-06-04 19:30:35 +02:00
|
|
|
|
|
|
|
MapEditor.select(marker);
|
|
|
|
});
|
|
|
|
|
2020-06-02 21:51:25 +02:00
|
|
|
var highResData = Util.getHighResData();
|
|
|
|
|
2020-06-01 21:13:02 +02:00
|
|
|
L.tileLayer(tileUrl, {
|
2020-06-11 00:14:30 +02:00
|
|
|
attribution: tileAttribution,
|
2020-06-02 21:51:25 +02:00
|
|
|
subdomains: '1234',
|
|
|
|
ppi: highResData.ppi,
|
|
|
|
tileSize: highResData.tileSize,
|
|
|
|
zoomOffset: highResData.zoomOffset,
|
2020-06-10 23:15:02 +02:00
|
|
|
minZoom: 2,
|
2020-06-01 21:13:02 +02:00
|
|
|
maxZoom: 20
|
|
|
|
}).addTo(MapEditor.map);
|
|
|
|
|
|
|
|
MapEditor.map.fitBounds(L.latLngBounds({ lat: mapBounds.south, lng: mapBounds.west }, { lat: mapBounds.north, lng: mapBounds.east }));
|
|
|
|
|
2020-06-11 23:23:28 +02:00
|
|
|
MapEditor.markers = L.markerClusterGroup({
|
|
|
|
maxClusterRadius: 50
|
|
|
|
});
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
for (var placeId in places) {
|
|
|
|
if (!places.hasOwnProperty(placeId)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
var place = places[placeId];
|
|
|
|
|
|
|
|
var marker = L.marker({ lat: place.lat, lng: place.lng }, {
|
|
|
|
icon: place.noPano ? IconCollection.iconRed : IconCollection.iconGreen,
|
2020-06-01 21:13:02 +02:00
|
|
|
zIndexOffset: 1000
|
|
|
|
})
|
2020-06-11 23:23:28 +02:00
|
|
|
.addTo(MapEditor.markers)
|
2020-06-01 21:13:02 +02:00
|
|
|
.on('click', function () {
|
|
|
|
MapEditor.select(this);
|
|
|
|
});
|
2020-06-02 21:44:01 +02:00
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
marker.placeId = place.id;
|
2020-06-01 21:13:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 23:23:28 +02:00
|
|
|
MapEditor.map.addLayer(MapEditor.markers);
|
|
|
|
|
2020-06-01 21:13:02 +02:00
|
|
|
MapEditor.panorama = new google.maps.StreetViewPanorama(document.getElementById('panorama'), {
|
|
|
|
// switch off fullscreenControl because positioning doesn't work
|
|
|
|
fullscreenControl: false,
|
|
|
|
fullscreenControlOptions: {
|
|
|
|
position: google.maps.ControlPosition.LEFT_TOP
|
2020-06-01 22:07:13 +02:00
|
|
|
},
|
|
|
|
motionTracking: false
|
2020-06-01 21:13:02 +02:00
|
|
|
});
|
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
document.getElementById('mapName').onclick = function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
var metadata = document.getElementById('metadata');
|
|
|
|
|
|
|
|
if (metadata.style.visibility === 'visible') {
|
|
|
|
metadata.style.visibility = 'hidden';
|
|
|
|
} else {
|
|
|
|
metadata.style.visibility = 'visible';
|
|
|
|
document.getElementById('metadataForm').elements.name.select();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
document.getElementById('metadataForm').onsubmit = function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
MapEditor.editMetadata();
|
|
|
|
};
|
|
|
|
|
|
|
|
document.getElementById('closeMetadataButton').onclick = function () {
|
|
|
|
document.getElementById('metadata').style.visibility = 'hidden';
|
|
|
|
};
|
|
|
|
|
2020-06-05 19:38:30 +02:00
|
|
|
document.getElementById('saveButton').onclick = function () {
|
|
|
|
MapEditor.saveMap();
|
|
|
|
};
|
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
document.getElementById('applyButton').onclick = function () {
|
|
|
|
MapEditor.applyPlace();
|
|
|
|
};
|
2020-06-01 21:13:02 +02:00
|
|
|
|
2020-06-06 02:18:12 +02:00
|
|
|
document.getElementById('closeButton').onclick = function () {
|
2020-06-05 00:22:41 +02:00
|
|
|
MapEditor.closePlace();
|
|
|
|
};
|
2020-06-01 21:13:02 +02:00
|
|
|
|
2020-06-05 00:22:41 +02:00
|
|
|
document.getElementById('deleteButton').onclick = function () {
|
|
|
|
MapEditor.deletePlace();
|
2020-06-01 21:13:02 +02:00
|
|
|
};
|
|
|
|
})();
|