Tagged Questions
1
vote
0answers
84 views
Acceptable Reduce() amounts for google maps zoom levels?
I'm using SQL Server Spatial to return large polygons to Google Maps for display. Given that google maps has a zoom scale of 1 - 20, I would like to reduce my polygons (reduce function uses the ...
3
votes
2answers
3k views
How can I display this polygon in Google Maps, properly
NOTE: this question is sorta like a follow-on question to this original GIS Question I asked. In that question, the main suggestion was that I was trying to show two polys. Now, I'm asking about a ...
3
votes
1answer
880 views
MS SQL Server's STDistance output differs from Google Earth/Maps straight line distance
I am testing SQL Server STDistance function in the following way:
DECLARE @g geography;
DECLARE @h geography;
SET @g = geography::STGeomFromText('POINT(53.553813 9.99158)', 4326);
SET @h = ...
13
votes
2answers
982 views
How can I fix my complex Polygons so they show correctly in Google Maps?
Problem: I'm trying to find a way to fix some broken polygon shapes and I'm not sure how I can do this.
Details:
I've got a number of polygons which I basically imported from TIGERLINES a while ...