-
Notifications
You must be signed in to change notification settings - Fork 8
PngMarker
andy.rothwell edited this page Aug 31, 2018
·
6 revisions
Note: This page is for documenting phila-vue-mapping's components/PngMarker.vue, which is for adding a PngMarker to a leaflet map.
There is also PictometryPngMarker, for adding a PngMarker to a pictometry widget.
The <png-marker>
tag is put inside a <map_>
tag:
<map_>
...
<!-- marker using a png and ablility to rotate it -->
<png-marker v-if="this.cyclomediaActive"
:icon="'images/camera.png'"
:latlng="cycloLatlng"
:rotationAngle="cycloRotationAngle"
/>
...
</map_>