0

As Singapore addresses include "#" and addresses cannot be passed well to google map API. I am using Java and will retrieve the address from database (MySQL) .Any suggestions are welcome :).

<a href="http://maps.google.com/maps?saddr=614337+Singapore&amp;daddr=109 North Bridge Road #03-39 Funan DigitaLife Mall Singapore 179097" target="_blank" >Get Directions</a>

enter image description here

404
  • 89
  • 3
  • 15

1 Answers1

1

Why do you need the #?

directions to 109 North Bridge Road Singapore 179097

The Places API/library will find that location: Places example

geocodezip
  • 158,664
  • 13
  • 220
  • 245
  • As I mentioned above , address are retrieved from the database and "#" sign already included in the address format , @geocodezip . – 404 Jan 09 '13 at 08:17
  • Retrieve address. Delete all `#`. Pass to Google. – duncan Jan 09 '13 at 09:03