This is problem the craziest thing that I have done so far. Not that it is hard, but what we want to do requires lots of data and setting it up correctly. So there are some things are you are going to need to do. First lets look at the basics.
The first thing that we [...]
Archive for October, 2007
24 Oct
Putting Polygons on the screen Part 1
24 Oct
Multiple POI Problem
When batchGeoCoding points you can only do 100 at a time or it will throw an error. This is something that took them a day to dig up for me. Here is the way that you can get around the issue.
<code>
if(arrItemsToBatchGeoCode.length <= 100)
{
doGeoCodeZips(arrItemsToBatchGeoCode);//call the flagged points
}
else
{
var arrZipCodeTemp:ArrayCollection = new ArrayCollection();
var arrZipCodeTempCollection:Array = new Array();
//we want [...]