GithubHelp home page GithubHelp logo

chrisguerrero / svelte-google-places-autocomplete Goto Github PK

View Code? Open in Web Editor NEW

This project forked from silinternational/svelte-google-places-autocomplete

0.0 0.0 0.0 121 KB

A Svelte component for using the Google Places Autocomplete API

License: MIT License

JavaScript 70.72% Makefile 0.60% HTML 0.87% Svelte 27.81%

svelte-google-places-autocomplete's Introduction

svelte-google-places-autocomplete

A minimal port of the Google Places Autocomplete API as a Svelte component.

Inspired largely by beyonk-adventures/svelte-googlemaps.

Google API Restrictions

If you restrict the Google API key you use for this (recommended), ensure you allow at least the following two APIs, since this component needs them in order to fully function:

  • Maps JavaScript API
  • Places API

Example usage

<script>
const options = {
  fields: ['address_components', 'geometry'],
  types: ['(cities)']
}
const placeholder = 'Destination city'

let locationName = localStorage.get('locationName') || ''
</script>

<GooglePlacesAutocomplete apiKey={googlePlacesApiKey} class="form-control"
                          on:place_changed={onPlaceChanged} {options}
                          on:ready={onReady} {placeholder}
                          value={locationName}
                          required
                          pattern="[a-zA-Z ]+" />

Parameters

apiKey

Your Google Places API Key.

class

Any HTML class string to apply to the input element.

options

The options that you want to pass to the Google Places Autocomplete code.

Details: https://developers.google.com/maps/documentation/javascript/reference/places-widget#AutocompleteOptions

placeholder

Any placeholder text to use. Defaults to an automatically-localized placedholder string.

value

The text to show in the input.

WARNING: You cannot bind to this. To receive data out of this component, listen for the place_changed event.

required

Require a value to be entered.

pattern

Specifies a regular expression that is used for validation upon form submission.

Events

place_changed

When a location is selected,

ready

Fired when the component has initialized, the Google Places API has been loaded, and this component is therefore ready for user interaction.

Tests

Running the tests

(Mostly) automated tests are available:

  1. Run make test
  2. Open localhost:8086 in a browser
  3. Paste in your Google Places API Key and hit Enter
  4. Follow any instructions shown (e.g. "Please click on the first suggestion")

Modifying the tests

The tests are defined in test/tests.js. See that file for examples.

Install with npm

$ npm install @silintl/svelte-google-places-autocomplete

svelte-google-places-autocomplete's People

Contributors

forevermatt avatar briskt avatar hobbitronics avatar dependabot[bot] avatar cptcrunchy avatar sprataa avatar cedrtang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.