0
I need to capture the event of DWELL
, ENTER
, LEAVE
of the polygons, can already add them on 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 input events, output and movements within this area.
How to do this ??
I use the latest version of google maps
the v3
. Is being developed in ionic 3
I need to basically do this
https://developer.android.com/training/location/geofencing.html
in javascript
Events are user events?
– N. Dias
@N.Days Not the system itself moves the Marketer
– Renan Rodrigues