Questions tagged [street-address]

Street address refers to postal addresses, or delivery points, that can be used for physical delivery of mail or goods.

Street address refers to postal addresses, or delivery points, that can be used for physical delivery of mail or goods. Data quality is a big issue surrounding street addresses, because they are not simple strings or numbers such as an email address or phone number. Therefore capturing, storing, de-duplicating and verifying street addresses all pose challenges.

577 questions
-1
votes
1 answer

Google Autocomplete API possibly has a new bug

So for my work i implemented a simple address search that uses Googles AutoComplete API. This has worked fine for sometime now but recently we ran into an issue with incorrect addresses coming into the system. I worked out the issue occurs when you…
jeffez
  • 185
  • 1
  • 12
-1
votes
1 answer

Decouple a single address string to city, country etc separately

I am writing a program which take a string of address and break it down into city, country etc. Let say someone speak New York City U.S. or U.S. New York after decoupled they both be country = U.S. and city = New York City.
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
-1
votes
1 answer

Simple address validation with Google maps

Saw some answers here which suggest paid services or complicated address validation designs, but it doesn't apply to our specific case. We have a lead capture form that lets users start typing the address and it autocompletes it for them: And…
Robert Sinclair
  • 4,550
  • 2
  • 44
  • 46
-1
votes
2 answers

IndexOutOfBoundsException on List

In my Android app I have this code: LatLng[] branches; String[] branchesArray = HomeActivity.branches.toArray(new String[HomeActivity.branches.size()]); for (int i = 0; i < HomeActivity.branches.size(); i++) { branches[i] =…
Ido
  • 171
  • 2
  • 13
-1
votes
1 answer

Google Geo Code API returning not more than 10 suggestions for the inputs

I am doing a proof of concept to accept address as input and provide suggestions to user using google geo-code service. I have written .Net Code to access google API.…
Chandrababu
  • 61
  • 2
  • 9
-1
votes
1 answer

How can I load map with my current address by using google map api

I have tried to load google map with my current location by using google maps api in JavaScript. I have tried this code by using JavaScript but it does not work. After I tried many ways I come to this code and it works perfect. This code will…
Tiger07
  • 15
  • 1
  • 3
  • 6
-1
votes
3 answers

RegEx With A Street Prefix And Wildcards

I can't figure out the correct regex expression for what I am looking for. Essentially what I need is the following. If user searches for a street prefix such as N W E S and includes a wildcard (%,*) that the regex ignores it. I only want the regex…
devfunkd
  • 3,164
  • 12
  • 45
  • 73
-1
votes
2 answers

Google Maps API Alternative Route Description

I am working with Google Maps API V3 to calculate all the possible routes from a given Source to the specified Destination. For this I takes the Destination and Source as inputs from the user and pass these values in the request with option…
user2004685
  • 9,548
  • 5
  • 37
  • 54
-1
votes
4 answers

How to get address,city name from longitude and latitude in iphone

How to get location details from a longitude/latitude value? Is there anyone who can help me with this situation.
amit rajput
  • 18
  • 12
-2
votes
2 answers

regex for address validation

I have an array of address but some of them are not valid they either start with an apartment like XYZ rd {Alphabatical start} or it has a range like 4000-9000 wallace rd etc Obviously I cant ship my products to those addresses. Can someone…
Asim Zaidi
  • 27,016
  • 49
  • 132
  • 221
-2
votes
1 answer

Autocomplete address with google api

I have programmed a simple page where the user can input their address into a search area. Based on the input the address is autocompleted via Google Maps API. Once the user selects one of the addresses then the fields are filled. Everything works,…
Joe
  • 263
  • 5
  • 20
-2
votes
1 answer

how to set Google Maps marker position with the address?

I'm fairly new to the Google Maps API and have to use it to locate some addresses. I want to know how the Google Maps marker can be located with the address written in a text field. I've been reading Google's documentation on this, but it hasn't…
Daniel
  • 147
  • 1
  • 7
  • 19
-2
votes
1 answer

googleapis geocode return only one record for incomplete or ambiguous address

I want to normalize (server-side), an input address, and it could be incomplete or complete. Which APIs should I use? I have used geocode, place/autocomplete and place/textsearch APIs, but I don't get what I want. Incomplete address input…
chiara
  • 1
-2
votes
2 answers

Parse street addresses from text files using Node.js

I am trying to solve this problem where I have to read the text files as an input and create object array with Node.js. The only corner cases are there are extra white spaces. Input: 89 Westport Ave. Pembroke Pines, FL 33028 9529 Bayport Rd. Eau…
-2
votes
2 answers

Street address regex for JavaScript

The rules for this test are: Must contain letters and numbers May contain these special characters anywhere within the string: Number sign (#) Minus (-) Full stop (.) Slash (/) Space ( ) May not contain any other special characters May not…
1 2 3
38
39