i am making a program in which i have to parse xml data into google map, i know how to use xml parser and bit knowledge of google mapping, here i need to fetch longitude, latitude, name and address from xml file and need to show in google map with the use of markers,please someone help me to make this one, i am placing my xml data below:-
<map>
<area>
<longitude>-97.762914</longitude>
<latitude>30.282165</latitude>
<name>Place Name 1</name>
<address>Place Address 1</address>
</area>
<area>
<longitude>-97.762914</longitude>
<latitude>31.282165</latitude>
<name>Place Name 3</name>
<address>Place Address 3</address>
</area>
<area>
<longitude>-97.762914</longitude>
<latitude>32.282165</latitude>
<name>Place Name 3</name>
<address>Place Address 3</address>
</area>
</map>
MyItemizedOverlay Class --> Used to Draw a pin in map