Search Bar AutoComplete by Address and Place Name - Swift 4











up vote
-1
down vote

favorite












Goal



I want to make my search box auto-complete detecting place name and address.



Currently, my search box auto-complete detecting only the address.



I used this one in my iOS app. Result is looking good for addresses but not place name.



https://github.com/shmidt/GooglePlacesSearchController


enter image description here



I want it to detect places, like B&H Photo in NYC and so on ?



Example what I'm trying to do



enter image description here



Is it a paid service that I need to enable on Google API Console Library ?



Can someone sheds some lights on this ?










share|improve this question


























    up vote
    -1
    down vote

    favorite












    Goal



    I want to make my search box auto-complete detecting place name and address.



    Currently, my search box auto-complete detecting only the address.



    I used this one in my iOS app. Result is looking good for addresses but not place name.



    https://github.com/shmidt/GooglePlacesSearchController


    enter image description here



    I want it to detect places, like B&H Photo in NYC and so on ?



    Example what I'm trying to do



    enter image description here



    Is it a paid service that I need to enable on Google API Console Library ?



    Can someone sheds some lights on this ?










    share|improve this question
























      up vote
      -1
      down vote

      favorite









      up vote
      -1
      down vote

      favorite











      Goal



      I want to make my search box auto-complete detecting place name and address.



      Currently, my search box auto-complete detecting only the address.



      I used this one in my iOS app. Result is looking good for addresses but not place name.



      https://github.com/shmidt/GooglePlacesSearchController


      enter image description here



      I want it to detect places, like B&H Photo in NYC and so on ?



      Example what I'm trying to do



      enter image description here



      Is it a paid service that I need to enable on Google API Console Library ?



      Can someone sheds some lights on this ?










      share|improve this question













      Goal



      I want to make my search box auto-complete detecting place name and address.



      Currently, my search box auto-complete detecting only the address.



      I used this one in my iOS app. Result is looking good for addresses but not place name.



      https://github.com/shmidt/GooglePlacesSearchController


      enter image description here



      I want it to detect places, like B&H Photo in NYC and so on ?



      Example what I'm trying to do



      enter image description here



      Is it a paid service that I need to enable on Google API Console Library ?



      Can someone sheds some lights on this ?







      ios swift google-places-api google-places googleplacesautocomplete






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 8 at 16:54









      kyo

      17.3k37128228




      17.3k37128228
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          Usage of the Places SDK for iOS is free. However, to ensure fair use by all apps, there are tiered query limits on some methods.



          The Places SDK for iOS enforces a default limit of 1,000 requests per 24 hour period. If your app exceeds the limit, the app will start failing.



          Details - query limits on specified methods




          • By default, each app is allowed 1,000 requests per 24-hour period.

          • You can increase this limit free of charge, up to 150,000 requests per 24 hour period, by enabling billing on the Google Cloud Platform Console to verify your identity. A credit card is required for verification. Google asks for your credit card purely to validate your identity. Your card will not be charged for use of the Places SDK for iOS.


          For more please visit https://developers.google.com/places/ios-sdk/usage






          share|improve this answer























          • Do you have any suggested torturial or pod u know ?
            – kyo
            Nov 8 at 17:31










          • Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
            – Sateesh
            Nov 8 at 17:35










          • I’m talking about the Apple one that u suggested.
            – kyo
            Nov 8 at 17:36










          • I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
            – Sateesh
            Nov 8 at 17:42











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53212546%2fsearch-bar-autocomplete-by-address-and-place-name-swift-4%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          Usage of the Places SDK for iOS is free. However, to ensure fair use by all apps, there are tiered query limits on some methods.



          The Places SDK for iOS enforces a default limit of 1,000 requests per 24 hour period. If your app exceeds the limit, the app will start failing.



          Details - query limits on specified methods




          • By default, each app is allowed 1,000 requests per 24-hour period.

          • You can increase this limit free of charge, up to 150,000 requests per 24 hour period, by enabling billing on the Google Cloud Platform Console to verify your identity. A credit card is required for verification. Google asks for your credit card purely to validate your identity. Your card will not be charged for use of the Places SDK for iOS.


          For more please visit https://developers.google.com/places/ios-sdk/usage






          share|improve this answer























          • Do you have any suggested torturial or pod u know ?
            – kyo
            Nov 8 at 17:31










          • Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
            – Sateesh
            Nov 8 at 17:35










          • I’m talking about the Apple one that u suggested.
            – kyo
            Nov 8 at 17:36










          • I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
            – Sateesh
            Nov 8 at 17:42















          up vote
          0
          down vote













          Usage of the Places SDK for iOS is free. However, to ensure fair use by all apps, there are tiered query limits on some methods.



          The Places SDK for iOS enforces a default limit of 1,000 requests per 24 hour period. If your app exceeds the limit, the app will start failing.



          Details - query limits on specified methods




          • By default, each app is allowed 1,000 requests per 24-hour period.

          • You can increase this limit free of charge, up to 150,000 requests per 24 hour period, by enabling billing on the Google Cloud Platform Console to verify your identity. A credit card is required for verification. Google asks for your credit card purely to validate your identity. Your card will not be charged for use of the Places SDK for iOS.


          For more please visit https://developers.google.com/places/ios-sdk/usage






          share|improve this answer























          • Do you have any suggested torturial or pod u know ?
            – kyo
            Nov 8 at 17:31










          • Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
            – Sateesh
            Nov 8 at 17:35










          • I’m talking about the Apple one that u suggested.
            – kyo
            Nov 8 at 17:36










          • I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
            – Sateesh
            Nov 8 at 17:42













          up vote
          0
          down vote










          up vote
          0
          down vote









          Usage of the Places SDK for iOS is free. However, to ensure fair use by all apps, there are tiered query limits on some methods.



          The Places SDK for iOS enforces a default limit of 1,000 requests per 24 hour period. If your app exceeds the limit, the app will start failing.



          Details - query limits on specified methods




          • By default, each app is allowed 1,000 requests per 24-hour period.

          • You can increase this limit free of charge, up to 150,000 requests per 24 hour period, by enabling billing on the Google Cloud Platform Console to verify your identity. A credit card is required for verification. Google asks for your credit card purely to validate your identity. Your card will not be charged for use of the Places SDK for iOS.


          For more please visit https://developers.google.com/places/ios-sdk/usage






          share|improve this answer














          Usage of the Places SDK for iOS is free. However, to ensure fair use by all apps, there are tiered query limits on some methods.



          The Places SDK for iOS enforces a default limit of 1,000 requests per 24 hour period. If your app exceeds the limit, the app will start failing.



          Details - query limits on specified methods




          • By default, each app is allowed 1,000 requests per 24-hour period.

          • You can increase this limit free of charge, up to 150,000 requests per 24 hour period, by enabling billing on the Google Cloud Platform Console to verify your identity. A credit card is required for verification. Google asks for your credit card purely to validate your identity. Your card will not be charged for use of the Places SDK for iOS.


          For more please visit https://developers.google.com/places/ios-sdk/usage







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 8 at 17:33

























          answered Nov 8 at 17:30









          Sateesh

          1,232615




          1,232615












          • Do you have any suggested torturial or pod u know ?
            – kyo
            Nov 8 at 17:31










          • Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
            – Sateesh
            Nov 8 at 17:35










          • I’m talking about the Apple one that u suggested.
            – kyo
            Nov 8 at 17:36










          • I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
            – Sateesh
            Nov 8 at 17:42


















          • Do you have any suggested torturial or pod u know ?
            – kyo
            Nov 8 at 17:31










          • Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
            – Sateesh
            Nov 8 at 17:35










          • I’m talking about the Apple one that u suggested.
            – kyo
            Nov 8 at 17:36










          • I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
            – Sateesh
            Nov 8 at 17:42
















          Do you have any suggested torturial or pod u know ?
          – kyo
          Nov 8 at 17:31




          Do you have any suggested torturial or pod u know ?
          – kyo
          Nov 8 at 17:31












          Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
          – Sateesh
          Nov 8 at 17:35




          Yes. I do. Google itself provides a tutorial of Place AutoComplete at developers.google.com/places/ios-sdk/autocomplete.
          – Sateesh
          Nov 8 at 17:35












          I’m talking about the Apple one that u suggested.
          – kyo
          Nov 8 at 17:36




          I’m talking about the Apple one that u suggested.
          – kyo
          Nov 8 at 17:36












          I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
          – Sateesh
          Nov 8 at 17:42




          I'm sorry. I have answered for Autocomplete with Google Places SDK. However there is another solution to autocomplete with MapKit. MKLocalSearchCompleter is an API which responsible to filter out the locations based on the text you entered. Please have a look at stackoverflow.com/a/38497997/5519329
          – Sateesh
          Nov 8 at 17:42


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53212546%2fsearch-bar-autocomplete-by-address-and-place-name-swift-4%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Schultheiß

          Liste der Kulturdenkmale in Wilsdruff

          Android Play Services Check