--
You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group.
To post to this group, send email to google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
Hello Chris, thanks by your answer but I think I didn't explain myself properly.
Currently the application is working property and I’m loading from MySQL the polygons information and I’m showing its in Google Maps, but… I have performance problems because I’m parsing with Javascript very long strings and I need to know about a better way for doing it.
My actual procedure is:
- MySQL table with Geometry field (spatial extension)
- Query it, using AsText(geometry) function
- Send it to javascript in json format
- Parse the string and separate each polygon’s node for creating an array of LatLng
- Using google.maps.Polyline
Note:
I can’t use Postgres and PostGIS in my server.
Some suggestion?
--