Angular Maps (X-Map) is a set of components and services to provide map functionality in angular 2+ apps. X-Maps architecture is provider independent and can be used with Bing, Google, ESRI or any other service enabled mapping provider. X-Map contains a default implementation for Bing Maps.
can you please tell me how I can trigger the MouseDown (mousedown) event from the x-map-polygon component
I tried to do that in the following way, but it did not work.
can you please tell me how I can trigger the MouseDown (mousedown) event from the x-map-polygon component I tried to do that in the following way, but it did not work.
` <x-map #xmap
[Options]="_options" [Box]="_box" (MouseDown)="_eventMouseDown($event)"
_eventMouseDown(event){ console.log('_eventMouseDown(event)'); }
***Component.html