Skip to content

Commit

Permalink
Merge pull request #19 from geolonia/fix-readme
Browse files Browse the repository at this point in the history
READMEの修正、不要なファイルを削除
  • Loading branch information
sugama-satsuki authored Aug 8, 2024
2 parents 66e415f + 648696b commit f89c89a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 25 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const GeoJsonlookfor = new gl.GeoJsonlookfor(geojson);
```
4. We can look for features with "bakery" in their properties in the following ways.
```javascript
GeoJsonlookfor.lookfor('bakery');
GeoJsonlookfor.match('bakery');
console.log(GeoJsonlookfor.getGeoJSON());
```

Expand Down Expand Up @@ -78,7 +78,7 @@ const geojson = {
}

const GeoJsonlookfor = new gl.GeoJsonlookfor(geojson);
const res = GeoJsonlookfor.lookfor('clothing store').getGeoJSON();
const res = GeoJsonlookfor.match('clothing store').getGeoJSON();

console.log(res);
```
Expand Down Expand Up @@ -108,7 +108,7 @@ console.log(res);

2. Look for a feature with "restaurant" and "A".
```typescript
const res = GeoJsonlookfor.lookfor('restaurant').lookfor('A').getGeoJSON();
const res = GeoJsonlookfor.match('restaurant').match('A').getGeoJSON();

console.log(res);
```
Expand Down
22 changes: 0 additions & 22 deletions src/utile.ts

This file was deleted.

0 comments on commit f89c89a

Please sign in to comment.