You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to find how to do it but could not find a solution.
I got my particular use working by adding an id property in the icon options.
{
id: vehicle.id
}
and adding this to the code in ProcessView:
creationMarker.addTo(map);
//*** TZAdvantage add id attribute to icon.
if (creationMarker._icon) {
creationMarker._icon.id = creationMarker.options.icon.options.id;
}
Am i overlooking something?
The text was updated successfully, but these errors were encountered:
hmm,
by "marker" do you mean the JS marker object (my first thought) or the icon on the map ??
if it is the second choice then my previous answer is not relevant...
I tried to find how to do it but could not find a solution.
I got my particular use working by adding an id property in the icon options.
and adding this to the code in ProcessView:
Am i overlooking something?
The text was updated successfully, but these errors were encountered: