Compare commits

...

3 Commits

Author SHA1 Message Date
aaa5a1daba
Merge pull request 'bugfix/streetviewcontrol-is-still-visible' (#34) from bugfix/streetviewcontrol-is-still-visible into develop
All checks were successful
default-pipeline default-pipeline #161
Reviewed-on: https://gitea.e5tv.hu/esoko/mapguesser/pulls/34
2021-05-02 16:27:34 +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'
}); });