Hello,
I have this in my view:
string_location = myaddress2
geodata = []
for place, (lat, lng) in g.geocode(string_location,exactly_one=False):
geodata.append((place, (lat, lng)))
geodata_results = len(geodata)
data = {"geodata": geodata, "geodata_results":geodata_results }
return render_to_response("business/business_view.html",
data, context_instance=RequestContext(request))
How would I "handle" / convert geodata into JSON and pass it to my template so that I can "loop" through it like an array?
Am I right to think that I can do it this way? If not, then please suggest on a better solution.
Thanks!
UPDATE
var geodata = "[["M. L. Quezon Street<br/>Mandaue City, Philippines", [10.351381999999999, 123.923535]], ["Talamban<br/>Cebu City, Philippines", [10.353527, 123.91352500000001]]]";
I think the JSON is not escaped? How do I escape special characters inside the json string? I keep getting a newline error.
For PHP, I would json_encode() to fix this. Like in this post: http://stackoverflow.com/questions/168214/pass-a-php-string-to-a-javascript-variable-including-escaping-newlines BUT how do I do that in Python/Django?