Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Here's how I got around this:</p> <ol> <li><p>You probably already know how, and depending on your source it's going to be different anyway, but collect up all your map data. Required bits are going to be: center point, zoom, map type, and output image size. I am going to assume sensor (if the application has access to GPS) is false. Also you are going to need all of your marker information which will include the icon you are going to use, and the geo coordinates of them.</p></li> <li><p>I POSTed this all to the CF page that is going to make all the magic happen.</p></li> <li><p>Map your first 5 points as normal. Get the results as a .png</p></li> <li><p>Map your next 5 points but add "style=feature:all|visibility:off" to the query string, get result as a .png. This will give you a png with a transparent background but will have all of your marker icons on it. It will be the same size as your initial map, and the markers will be placed correctly withing that rectangle.</p></li> <li><p>Watermark that image on top of your initial map. NOTE: this step is probably going to vary the most depending on your language of choice and what image manipulation features it offers.</p></li> <li><p>Repeat 4 and 5 until you have all of your markers.</p></li> <li><p>Write out you image with all of the markers now on it.</p></li> <li><p>Serve up a link to that file instead of using the normal google link.</p></li> </ol> <p>I have a more detailed explanation <a href="http://disinformationtech.blogspot.com/2013/12/getting-around-five-icon-limit-in.html" rel="nofollow">here</a> with some code example in ColdFusion.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload