Displaying 1 result from an estimated 1 matches for "start_lon".
Did you mean:
start_log
2007 Dec 22
1
Ajax.Updater and JavaScript functions
...l.
The Javascript has something along the lines of :
<script type="text/javascript">
splitInfo = function(splitNumber) {
var splitJSON = <? echo json_encode($m_array); ?>;
var latlng1 = new GLatLng(splitJSON.data[splitNumber].start_lat,
splitJSON.data[splitNumber].start_lon);
var latlng2 = new GLatLng(splitJSON.data[splitNumber].fin_lat,
splitJSON.data[splitNumber].fin_lon);
addSplitMarker(latlng1,latlng2);
}
</script>
As you can see there is some PHP in there to insert a JSON object,
which is different on each call.
On the first call the JSON is ev...