Skip to content

Commit 229e707

Browse files
committed
fix wrong tile path
1 parent 1aa02ac commit 229e707

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
# Version 1.1.0 (Jul 8, 2021)
4+
- Fix wrong goong-js base url
5+
36
# Version 1.0.9 Goong
47

58
- Convert code to Goong

docs/api-reference/static-map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Goong WebGL context creation option. Useful when you want to export the canvas a
5353

5454
##### `goongApiUrl` (String)
5555

56-
- default: `https://rsapi.goong.io`
56+
- default: `https://tiles.goong.io`
5757

5858

5959
##### `mapOptions` (Object)

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@goongmaps/goong-map-react",
33
"description": "A fork of react-map-gl. React components for Goong JS",
4-
"version": "1.0.9",
4+
"version": "1.1.0",
55
"keywords": [
66
"goong",
77
"goong-io",
@@ -38,19 +38,18 @@
3838
"build": "ocular-clean && ocular-build && npm run flowgen",
3939
"flowgen": "for i in $(find dist -type f -name \"*.d.ts\"); do sh -c \"flowgen $i -o ${i%.*.*}.js.flow\"; done;",
4040
"lint": "ocular-lint",
41-
"cover": "ocular-test cover",
41+
"cover": "ocullar-test cover",
4242
"publish-prod": "ocular-publish prod",
4343
"publish-beta": "ocular-publish beta",
4444
"test": "tsc && ocular-test",
4545
"test-fast": "tsc && ocular-test node",
46-
"metrics": "ocular-metrics",
47-
"update-release-branch": "scripts/update-release-branch.sh"
46+
"metrics": "ocular-metrics"
4847
},
4948
"dependencies": {
5049
"@babel/runtime": "^7.0.0",
5150
"@types/geojson": "^7946.0.7",
5251
"@types/mapbox-gl": "^2.0.3",
53-
"@goongmaps/goong-js": "^1.0.6",
52+
"@goongmaps/goong-js": "^1.0.8",
5453
"mjolnir.js": "^2.5.0",
5554
"prop-types": "^15.7.2",
5655
"resize-observer-polyfill": "^1.5.1",

src/goong/goong.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const propTypes = {
7575
const defaultProps = {
7676
container: document.body,
7777
goongApiAccessToken: getAccessToken(),
78-
goongApiUrl: 'https://rsapi.goong.io',
78+
goongApiUrl: 'https://tiles.goong.io',
7979
preserveDrawingBuffer: false,
8080
attributionControl: true,
8181
reuseMaps: false,

0 commit comments

Comments
 (0)