mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-20 09:44:26 +08:00
change map marker icon
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 936 B |
Binary file not shown.
|
After Width: | Height: | Size: 736 B |
@@ -95,7 +95,18 @@ export default {
|
|||||||
|
|
||||||
if (centerChanged && this.zoomLevel > 1) {
|
if (centerChanged && this.zoomLevel > 1) {
|
||||||
if (!this.marker) {
|
if (!this.marker) {
|
||||||
this.marker = this.$map.leaflet.marker(this.initCenter).addTo(this.leaflet);
|
const markerIcon = this.$map.leaflet.icon({
|
||||||
|
iconUrl: 'img/map-marker-icon.png',
|
||||||
|
iconRetinaUrl: 'img/map-marker-icon-2x.png',
|
||||||
|
iconSize: [25, 32],
|
||||||
|
iconAnchor: [12, 32],
|
||||||
|
shadowUrl: 'img/map-marker-shadow.png',
|
||||||
|
shadowSize: [41, 32]
|
||||||
|
});
|
||||||
|
this.marker = this.$map.leaflet.marker(this.initCenter, {
|
||||||
|
icon: markerIcon
|
||||||
|
});
|
||||||
|
this.marker.addTo(this.leaflet);
|
||||||
} else {
|
} else {
|
||||||
this.marker.setLatLng(this.initCenter);
|
this.marker.setLatLng(this.initCenter);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user