0
votes
1answer
13 views

Geocoding doesn't work now V3 is in play

I have a internal site which uses php to look through my msql customer database. Find any customers which do not have lat and lng fields filled in. Grab the postcodes and geocode them posting the lat ...
-2
votes
0answers
29 views

geocoding addresses from DB [closed]

I found this script for getting the latitude and longitude of an address but don't know how to echo the results. Can someone help? <?php function toCoordinates($address) { $bad = array( " " ...
-1
votes
0answers
52 views

Google Maps. Multiple Lines and Markers

I'm using Google maps with PHP and mysql to select a list of locations from my database, placing them on my map and creating a line. I want to have a line from an origin to a destination address. The ...
0
votes
2answers
54 views

how to match users with nearest addresses? [duplicate]

I'm doing a website which every user put his address and the website will match every one with the closest person, I embedded Google map API for the direction but how can the website match users ? if ...
0
votes
1answer
425 views

How can i get WOEID by Latitude and longitude?

In my application, i have only the Latitude and longitude of the current position. How can i get WOEID by Latitude and longitude ?
1
vote
0answers
79 views

How to configure WFS layer with openlayer in PHP wampserver with Windows

<script src="http://www.openstreetmap.org/openlayers/OpenStreetMap.js"> </script> <script type="text/javascript"> function init() { var map = new OpenLayers.Map ("map", { ...
1
vote
4answers
54 views

Applying Information from one table to a separate table in same database?

I have TABLE 1 that contains zip codes and their location information (i.e longitude, latitude, etc), TABLE 2 contains the properties with their addresses... I need to connect the longitude and ...
0
votes
1answer
340 views

Request Latitude Longitude - G_GEO_BAD_KEY [duplicate]

I have a script in PHP to get Latitude and Longitude of an address. I never used an API KEY, but the code always worked. Weeks ago, it stopped to work So, I get an API Key. However, isn't working. ...
0
votes
0answers
93 views

Getting my location using MapQuest and PHP

I'm currently working on my webApp using MapQuest API with PHP and I want to have the latitude and longitude of my current location how to do that in PHP and MapQuest? THX b4
1
vote
1answer
262 views

PHP Decode of Google Geocode API JSON Breaks When Response Contains “/”

Below is the relevant code in my application..... <? $jsonData = file_get_contents($url); $data = json_decode($jsonData, TRUE); $lat = ...
0
votes
4answers
754 views

Google Maps Geocode Status OVER_QUERY_LIMIT

I understand that Google caps requests to 2,500 per day... but there's no way on EARTH that I've made that many requests today, and I just keep getting 'OVER_QUERY_LIMIT' $street_no = ...
0
votes
0answers
156 views

Calculating distance between two post codes

I would like some help with how to go about calculating the distance between two post codes. Here is the setup that I wish to have, let me give you a scenario. A user logs into my website (they have ...
0
votes
0answers
118 views

Real Time Interactive World Map - Can anyone help me get started? [closed]

I want to build a webpage that has a scroll-able/zoom-able map of the world, that displays the visitors who are currently online with an interactive tool tip of sorts. Something like this but with ...
1
vote
1answer
71 views

PHP class or function or convert northern ireland eastings and northings to lat and long

I have some data of northern ireland postcodes with eastings and northings for each postcode. Does anyone know of a class or function I can use in PHP to convert these to latitude and longitude ...
0
votes
2answers
315 views

PostGIS functions integrated in php example?

I'm writing a client for a postgreSQL database with PostGIS functions. this client of course communicates through php. However I'm looking for a proper documentations for available postGIS functions ...
2
votes
3answers
659 views

Find closest 10 cities with MySQL using latitude and longitude?

I have searched the Web a lot to find the solution for my problem but I still can't figure it out. I have a very simple database with id, city name, latitude, longitude and city_info. When someone ...
0
votes
1answer
104 views

Google maps geocoding not returning result

This is a random address I have found doesn't work and yet the address exists fine. "Team Valley Trading Estate, Gateshead, Tyne and Wear NE92 1DG, UK" Can you guys try geocoding that and tell me if ...
0
votes
0answers
133 views

fseek(): supplied argument is not a valid stream resource

Not sure what I have done wrong but this error has drive me mad. I keep getting "fseek(): supplied argument is not a valid stream resource" error from these codes below: public function ...
-1
votes
1answer
130 views

Geocoding a Custom Field in Wordpress

I have hundreds of posts with an address custom field, sometimes the field is an excerpt. I pull the address from these fields depending on the custom post type it is, so that is sorted out. I then ...
0
votes
0answers
148 views

Google geocoding working fine on localhost but not on remote server

I am using this query to find latitude and longitude for a location in my application, $places[0]="ANY_PLACE_NAME"; ...
0
votes
2answers
2k views

Address in PHP variable, Google Maps embedding without Javascript?

I consider myself to be an average PHP coder, but I can barely edit the few bits of JavaScript code that I need on my websites. I have an address in a PHP variable and I would like a simple map to ...
0
votes
1answer
169 views

Getting from Google API Geocode to Form fields to a Database?

I've got everything going great up to a certain point. I have a form where users fill out their address in form (separate fields for street, city, state, zipcode). Once they hit submit, on the ...
0
votes
1answer
241 views

GMaps Geocoding from PHP Value

I'm having some problems trying to figure out how to generate a Google Map from an address sent by POST or GET data from another page. I want to have it so the map shows up right away, and doesn't ...
3
votes
2answers
2k views

Parsing Google Geocoding JSON with PHP

I'm trying to parse the json response from the Google Geocode API but I'm having a little trouble understanding it. For those unfamiliar with the Geocode API here is the URL: ...
0
votes
1answer
98 views

Iterate through SimpleXMLElement to retrieve postal code value

I am trying to extract the postal code from the Google Geocode v3 API XML Response. The difficulty I am having is that sometimes the postal_code value is contained in the 6th address_element and ...
0
votes
0answers
71 views

How to reference ExtendedData in array in Geocode XML Response

I am trying to parse a Geocode XML Response. I can reference individual elements using something like this: $xml->Response->Placemark->address; But how do I reference the attributes array ...
0
votes
1answer
329 views

Google Geocoding API giving different results to my server and my web browser [duplicate]

I'm using the Google Geocoding API to get the lat/lng co-ordinates for different location searches on my site. The problem is that for areas of London (it might not be restricted to just London that's ...
7
votes
4answers
4k views

Measuring the distance between two coordinates in PHP

Hi I have the need to calculate the distance between two points having the lat and long. I would like to avoid any call to external API. I tried to implement the Haversine Formula in PHP: Here is ...
0
votes
2answers
447 views

Get a query from url in php

I don't know how to do this in php. I am trying to get geocode data from openstreetmap.org but I need to do this in php. In Javascript (and I have this working), it's: <script ...
1
vote
0answers
94 views

Google Geocoder ignores country in searched address

This is the issue: a user chooses a hotel name, city and country, and that location is found using Google Places so that a marker can be added to a Google Map. City and country are concatenated into ...
0
votes
1answer
187 views

Google Map API Trouble

I've got some code that takes any address and returns lat and long as a php variable. if ($_SESSION['where']) { $where = stripslashes($_SESSION['where']); $whereurl = urlencode($where); ...
-1
votes
1answer
167 views

Any other geocoding service that would allow me to get lat and lng from address for 1000 requests just once?

Any other geocoding service that would allow me to get lat and lng from address for 1000 requests just once ? I can't ues Google Maps API. I need to use it freely and import lat and lng values into ...
0
votes
1answer
497 views

How do I do bulk geocoding against the MapQuest geocoder using PHP?

Is there a person who uses MapQuest as geocode service ? What i need is simple function that you pass the address and it gets the lat and lng inside it as results, just them nothing else needed. For ...
1
vote
2answers
104 views

Saving and querying areas in mysql

I have a series of areas (cities, districts, etc) saved in a MySQL DB. At the moment these contain only out of a human readable name. How can I select all records that contain a particular lat/long ...
0
votes
1answer
263 views

How to know if a place exists at a location via google maps on PHP

Is it possible to confirm if a place name exists for a specified coordinates via PHP? In other words, is it possible to make a request to google maps indicating the place name and their coordinates ...
1
vote
1answer
180 views

Different response geocoding in PHP than directly in URL navigation bar (Google maps api v3 json)

If I put this URL: http://maps.googleapis.com/maps/api/geocode/json?address=la%20coru%C3%B1a,%20la%20coru%C3%B1a,%20espa%C3%B1a&sensor=false&region=es I get this json object: { "results" : ...
0
votes
1answer
744 views

Google map geocoder is not returning correct geo location

I'm having problems using geocoder and returning correct lat / lang coordinates. The controller address is returning correct geo location, but when I'm using the character ΓΈ in the address, I'm ...
0
votes
3answers
1k views

Point-in-Polygon PHP Errors

I am using a point-in-polygon check in php, but I am getting major errors - as in points that are not in the polygon are coming up as inside. My basic functions are typed out below (found here, ...
0
votes
0answers
574 views

How to store geocode results in a database

I'm currently plotting multiple markers on a Google Map (V3) via Wordpress data with the code below. I'm using an address (geocode) and want to avoid anyone having to enter lat/long coordinates into ...
2
votes
1answer
1k views

Retrieving Country (ISO 3166-1) and Region (ISO 3166-2) codes from address (using existing web services)

Are there any web services or DBs available that will be able to return the ISO 3166-1 and ISO 3166-2 (Country & region) codes given a particular address or latitude/longitude coordinates? I'm ...
1
vote
1answer
920 views

finding closest craigslist site for given address

how to map closest craigslist site for a given address(zip)? or I was thinking of making that mapping myself by looking at the list of craigslist sites city-wise/state-wise.
1
vote
1answer
412 views

PHP calculate lat/lng of the square around a given point on the surface?

Given latitude/longitude of a point of earth surface (and a distance, say in kilometers) i need to compute the top-left, top-right, bottom-right and bottom-left coordinates. No matter the orientation ...
0
votes
2answers
336 views

How to move x distance in any direction from geo coordinates?

I'm using Google Places API to get a list of establishment near a geo location, and I'm trying to figure out how to move 1km north and get geo coordinates there and then do another Google API call. ...
1
vote
3answers
391 views

Profile Location Information using PHP/MySQL and optionally JavaScript

One of the sites I work on is a social networking site of sorts, and the content would be greatly enhanced by using some sort of location service to recommend "friends" based on proximity. The site ...
1
vote
2answers
227 views

How to get places with a certain radius

I have a database of activities , each activities could be held on 3 days , each day contains a postal code . So the database looks like that (+ alot of other fields) In another database i have a ...
2
votes
3answers
11k views

Why doesn't file_get_contents work?

Why does file_get_contents not work for me? In the test file code below, it seems that everyone's examples that I've searched for all have this function listed, but it never gets executed. Is this a ...
1
vote
3answers
875 views

Finding Lat/Long using polygon or circle as search

I'm out of my element here so please forgive me if I dont ask this correctly/clearly. I have a table of users with lat/long for each one. I get a query from a federal agency that provides either a ...
0
votes
1answer
366 views

Slow down Geocoding a batch of Address

I'm planning to use the Google Maps V3 API to geocode a batch of address stored in an array. These address will be retrieved from my database and geocoded so I can create markers for them on the map. ...
1
vote
0answers
692 views

PHP Google Maps Geocoding XML load issue

This is really weird and has me baffled. I have a PHP script that collects data from an address input form, formats it for the googlemaps geocoding service, and then loads the xml this service returns ...
1
vote
3answers
529 views

Obtaining street name from postal code - Canada

I would like to know if anyone has been able to map a postal code to a street name in Canada. Canada Post does this in their website through their systems. I tried submitting an AJAX POST request to ...

1 2