Hi all,
I have a working dropdown box and a map on my ASP.NET page. On selectedindexchanged in the dropdown box I want to:
1. go out to my sql db and get an array of lat/long points for the boundary of that county,
2. update the Bing Map to display the county as large as possible within the map and show the outline of the county.
My questions are:
Where is the best place to store the lat/long array? (client-side javascript array, html <table>, sqldatasource 'SDSCountyInfo', or something else)
How many points (approximately) for the boundary are too many (from a performance standpoint)?
What about when I add the township boundaries (within the county); max 65 townships?
Thank you!
I'm using VSE2013 for Web, SQLServer2012, BingMapsAJAXControlSDK7.0
Here's the HTML:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="MapTest.aspx.vb" Inherits="WKY ...
Go to the complete details ...