Performance and Adding more Information in MapsMarker

Hi,

I have found, that Map is not Navigateable anymore if adding around 3000 Marker. But this is not my main request for that Topic.
When I add a Child Class for adding some more Information to the Marker I get a Access Violation.
Can you Help me with that?

MapOverflowSample.zip (90.5 KB)

This is unfortunately because of the marker events, we need to detect if the cursor is over a marker and there are no events for a specific marker object, only a map level, therefore we need to loop through all markers. Google Maps for example does not have that issue as there is a way to add events for each object. TTMSFNCMapsMarker is a class that is a collection item, the collection is not capable of creating TMyClass as a descendant. When using AddMarker it creates a TTMSFNCMapsMarker, not a TMyClass. If you want to assign custom data to a marker you need to work with the Data* properties.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.