https://github.com/polymerelements/iron-location
A Polymer element that manages binding to the page's URL.
https://github.com/polymerelements/iron-location
Last synced: about 1 year ago
JSON representation
A Polymer element that manages binding to the page's URL.
- Host: GitHub
- URL: https://github.com/polymerelements/iron-location
- Owner: PolymerElements
- Created: 2015-10-19T20:52:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-16T14:02:53.000Z (over 2 years ago)
- Last Synced: 2024-05-15T13:47:09.704Z (about 2 years ago)
- Language: HTML
- Size: 511 KB
- Stars: 22
- Watchers: 18
- Forks: 41
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/@polymer/iron-location)
[](https://travis-ci.org/PolymerElements/iron-location)
[](https://webcomponents.org/element/@polymer/iron-location)
## iron-location
The iron-location elements manage bindings to and from the current URL and query
parameters.
See: [Documentation](https://www.webcomponents.org/element/@polymer/iron-location),
[iron-location demo](https://www.webcomponents.org/element/@polymer/iron-location/demo/demo/index.html),
[iron-query-params demo](https://www.webcomponents.org/element/@polymer/iron-location/demo/demo/iron-query-params.html).
### <iron-location>
The `iron-location` element manages binding to and from the current URL.
### <iron-query-params>
The `iron-query-params` element manages serialization and parsing of query
parameter strings.
## Usage
### Installation
```
npm install --save @polymer/iron-location
```
### In an html file
##### <iron-location>
```html
import '@polymer/iron-location/iron-location.js';
```
#### <iron-query-params>
```html
import '@polymer/polymer/lib/elements/dom-bind.js';
import '@polymer/iron-location/iron-location.js';
import '@polymer/iron-location/iron-query-params.js';
```
### In a Polymer 3 element
##### <iron-location>
```js
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-location/iron-location.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
`;
}
}
customElements.define('sample-element', SampleElement);
```
#### <iron-query-params>
```js
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-location/iron-location.js';
import '@polymer/iron-location/iron-query-params.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
`;
}
}
customElements.define('sample-element', SampleElement);
```
## Contributing
If you want to send a PR to this element, here are
the instructions for running the tests and demo locally:
### Installation
```sh
git clone https://github.com/PolymerElements/iron-location
cd iron-location
npm install
npm install -g polymer-cli
```
### Running the demo locally
```sh
polymer serve --npm
open http://127.0.0.1:/demo/
```
### Running the tests
```sh
polymer test --npm
```