Hi i am looking to do reverse geocoding using google api and xml file .

Qt Code:
  1. XmlListModel {
  2. id: cityQuery
  3. source:"http://maps.google.com/maps/api/geocode/xml?latlng=18.4632,-69.9296&sensor=false"
  4. query: "/GeocodeResponse/result"
  5.  
  6. XmlRole {
  7. name: "formatted_address"
  8. query: "formatted_address/@data/string()"
  9. }
  10. }
To copy to clipboard, switch view to plain text mode 

However , formatted_address returns an empty string. Did i make a mistake ??