Compare commits

..

4 Commits

Author SHA1 Message Date
700d349d38
move street view cover button to the map as circleControl
All checks were successful
default-pipeline default-pipeline #158
2021-05-02 14:53:01 +02:00
2edfd14437
make circle control items more general 2021-05-02 14:51:01 +02:00
f9c1829a00
enable zoomControl for Leaflet map to be consistent with Google map
All checks were successful
default-pipeline default-pipeline #157
2021-05-02 13:45:34 +02:00
e03850ce05
switch off streetViewControl explicitly 2021-05-02 13:42:46 +02:00

View File

@ -377,8 +377,7 @@
LMapWrapper.divId = divId; LMapWrapper.divId = divId;
LMapWrapper.map = L.map(LMapWrapper.divId, { LMapWrapper.map = L.map(LMapWrapper.divId, {
center: { lat: 0., lng: 0. }, center: { lat: 0., lng: 0. },
zoom: 2, zoom: 2
zoomControl: false
}); });
LMapWrapper.map.on('click', function (e) { LMapWrapper.map.on('click', function (e) {
@ -517,6 +516,7 @@
zoomControlOptions: { zoomControlOptions: {
position: google.maps.ControlPosition.LEFT_BOTTOM position: google.maps.ControlPosition.LEFT_BOTTOM
}, },
streetViewControl: false,
draggableCursor: 'crosshair' draggableCursor: 'crosshair'
}); });