Skip to content

Commit

Permalink
chore: 🚀 bump version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chantouchsek committed Aug 7, 2021
1 parent e27b558 commit 35f829c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,25 @@ is triggered with the result.
</template>
```

##### Update V 0.0.6
### Autocomplete props
- Example:
```js
const center = { lat: 50.064192, lng: -130.605469 };
// Create a bounding box with sides ~10km away from the center point
const defaultBounds = {
north: center.lat + 0.1,
south: center.lat - 0.1,
east: center.lng + 0.1,
west: center.lng - 0.1,
};
const options = {
bounds: defaultBounds,
componentRestrictions: { country: "us" },
fields: ["address_components", "geometry", "icon", "name"],
strictBounds: false,
types: ["establishment"],
};
```

````vue
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vuejs-google-maps",
"description": "A set of Google Map components for VueJs",
"version": "0.1.1",
"version": "0.2.0",
"license": "MIT",
"main": "./dist/vuejs-google-maps.umd.js",
"types": "types/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/assets/cities.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"title": "Faenza",
"description": "Faenza is an Italian city and comune, in the province of Ravenna, Emilia-Romagna, situated 50 kilometres southeast of Bologna.",
"position": {
"lat": 34.731943,
"lng": 135.731617
"lat": 11.457374,
"lng": 104.873992
}
},
{
Expand Down

0 comments on commit 35f829c

Please sign in to comment.