I need to capture the event of DWELL
, ENTER
, LEAVE
of the polygons, and you can add them to the map with the following code:
this.map.addPolygon({
points: geofence,
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
draggable: true,
geodesic: true
});
Now I am not able to add to listen to incoming, outgoing and moving events within this area.
How to do this ??
I use the most recent version of google maps
or v3
. It is being developed in ionic 3
I basically need to do this
no javascript