radar-sdk-js 4.1.2-beta.0 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/dist/radar.js +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ Radar.initialize('prj_test_pk_...', { /* options */ });
|
|
|
57
57
|
|
|
58
58
|
Add the following script in your `html` file
|
|
59
59
|
```html
|
|
60
|
-
<script src="https://js.radar.com/v4.1.2
|
|
60
|
+
<script src="https://js.radar.com/v4.1.2/radar.min.js"></script>
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
Then initialize the Radar SDK
|
|
@@ -74,8 +74,8 @@ To create a map, first initialize the Radar SDK with your publishable key. Then
|
|
|
74
74
|
```html
|
|
75
75
|
<html>
|
|
76
76
|
<head>
|
|
77
|
-
<link href="https://js.radar.com/v4.1.2
|
|
78
|
-
<script src="https://js.radar.com/v4.1.2
|
|
77
|
+
<link href="https://js.radar.com/v4.1.2/radar.css" rel="stylesheet">
|
|
78
|
+
<script src="https://js.radar.com/v4.1.2/radar.min.js"></script>
|
|
79
79
|
</head>
|
|
80
80
|
|
|
81
81
|
<body>
|
|
@@ -99,8 +99,8 @@ To create an autocomplete input, first initialize the Radar SDK with your publis
|
|
|
99
99
|
```html
|
|
100
100
|
<html>
|
|
101
101
|
<head>
|
|
102
|
-
<link href="https://js.radar.com/v4.1.2
|
|
103
|
-
<script src="https://js.radar.com/v4.1.2
|
|
102
|
+
<link href="https://js.radar.com/v4.1.2/radar.css" rel="stylesheet">
|
|
103
|
+
<script src="https://js.radar.com/v4.1.2/radar.min.js"></script>
|
|
104
104
|
</head>
|
|
105
105
|
|
|
106
106
|
<body>
|
|
@@ -131,8 +131,8 @@ To power [geofencing](https://radar.com/documentation/geofencing/overview) exper
|
|
|
131
131
|
```html
|
|
132
132
|
<html>
|
|
133
133
|
<head>
|
|
134
|
-
<link href="https://js.radar.com/v4.1.2
|
|
135
|
-
<script src="https://js.radar.com/v4.1.2
|
|
134
|
+
<link href="https://js.radar.com/v4.1.2/radar.css" rel="stylesheet">
|
|
135
|
+
<script src="https://js.radar.com/v4.1.2/radar.min.js"></script>
|
|
136
136
|
</head>
|
|
137
137
|
|
|
138
138
|
<body>
|
package/dist/radar.js
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.1.2
|
|
1
|
+
declare const _default: "4.1.2";
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '4.1.2
|
|
1
|
+
export default '4.1.2';
|