I am new here and new to C#, and am having what I hope is a simple problem to solve.
(I use gmaps.net for winforms for this, but will also use the method via the web API maps version as well).
We have a database of zipcodes and areas in our database. Each area contains multiple zipcodes. Each zipcode has a series of coordinates that create a google maps polygon for that zipcode.
Presently if we want to display our "area" on the map, we do so by drawing the polygons for each of the area's zipcodes without borders and all of the same color (so it appears as one large polygon, just without a border).
Now ive been tasked to add a border to it, but only an outer border - not the borders for each internal zipcode.
Now, I'm not a math genius by any means, but it seems to me there should be a way I can run each group of zipcodes' coordinates (all combined to a single list of PointLatLng), thru a method that will discard all of the "internal" points leaving only the outer border points which we can then use as one single polygon (with border!) for our "Area"... is this possible? CAn someone give me a kick in the right direction for figuring out how to do it?
Thanks!
Jason