ThinkGeo.com    |     Documentation    |     Premium Support

How do I extract just the longitude latitude

I'm evauluating you product and so far it seems to be what I'm looking for. I have a technical question.


 


1. in the geocoder class I see a method matchResult how do I extract just the longitude latitude from this method?


 


Thank you



Mac, 
  
 Thanks for your post, as you know there is a MatchResult object, that is the geocoder result, also there is a collection that names MatchItems was included in the MatchResult object, each MatchItem object contains some key-values, you can see there are two keys, they are "CentroidPoint" and "BoundingBox", their values are Point WKT and Multipolygon WKT. 
  
 So if you want to get the longitude and latitude value from the MatchResult object, you can get the CentroidPoint WKT value first, then construct the PointShape by MapSuiteCore, the x and y value are the longitude and latitude. 
  
 If you have any other questions please let me know, 
  
 Thanks,