• Hello! Thank you for your great extension! Can yo add the possibility to switch the sequence of street and street number? Here in Germany (and many other countries) we have the street number after the street name, your extension place it at first position

    for example: Hamburger Strasse 123 (correct format)
    is transfered to : 123 Hamburger Strasse

    I fix it using the following code in map_data.js… but now I loose the update possibility

    google.maps.event.addListener(
    autocomplete,
    “place_changed”,
    function () {
    var addressLine1 = “”;
    var addressLine2 = “”;
    var addressLine3 = “”;
    var streetNr = “”; // NEW VARIABLE
    ….

    case “street_number”:
    //addressLine1 += val + ” “; // original code
    streetNr = val; // NEW use variable, not the addressLine1
    break;

    case “route”:
    addressLine1 += val + ” ” + streetNr; //ADD streetnumber
    break;

Viewing 1 replies (of 1 total)
  • Hi, I have exactly the same question as I’m Europe based! Thanks for the great plugin in any case & also thanks Maenz for this fix. Would be awesome if the ability to switch street number & name would be included as a plugin setting!

Viewing 1 replies (of 1 total)
  • The topic ‘sequence of “street number street name” not useable’ is closed to new replies.