Created
June 25, 2015 23:37
-
-
Save geoah/6a09db5252981379c42d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header("content-type: application/json; charset=UTF-8"); | |
$aFilteredPlaces = array(); | |
foreach($aSearchResults as $iResNum => $aPointDetails) | |
{ | |
$aPlace = array(); | |
$aPlace['lat'] = (float) $aPointDetails['lat']; | |
$aPlace['lng'] = (float) $aPointDetails['lon']; | |
$aPlace['description'] = $aPointDetails['name']; | |
$aFilteredPlaces[] = $aPlace; | |
} | |
javascript_renderData($aFilteredPlaces); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment