Marker Limit? - Error finding location for ...
I have a list of locations that I want to make markers for. My test data is 16 identical GPS locations. Now i'm getting 5 Error finding location for ... of the 16 markers.
Is there a limit on markers or a limit on identical markers?
Steps to reproduce and a minimal demo
Loop through a list of identical data, generate markers in html
<marker *ngFor="let coordinate of coordinates" [position]="coordinate"></marker>
Current behavior
throws errors after the 11th marker made.
Expected/desired behavior
no errors :P
can you make a stackblitz repo for this issue.
FYI, Google maps api does not allow consecutive number of geo lookup call. Thus, provide exact lat/lng instead of address for position.
Hi,
Even with providing exact lat/lng, I m able to display around 10 markers, then I get the errors. I need to display around 400 markers.
Did you find a solution