react-native-map-link 2.9.2 → 2.9.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-map-link",
3
- "version": "2.9.2",
3
+ "version": "2.9.3",
4
4
  "description": "Open the map app of the user's choice with a specific location",
5
5
  "main": "index.js",
6
6
  "repository": {
package/src/index.js CHANGED
@@ -198,10 +198,10 @@ export async function showLocation(options) {
198
198
  }
199
199
  break;
200
200
  case 'truckmap':
201
- url = `http://truckmap.com/place/${lat},${lng}`;
201
+ url = `https://truckmap.com/place/${lat},${lng}`;
202
202
 
203
203
  if (useSourceDestiny) {
204
- url = `http://truckmap.com/route/${sourceLat},${sourceLng}/${lat},${lng}`;
204
+ url = `https://truckmap.com/route/${sourceLat},${sourceLng}/${lat},${lng}`;
205
205
  }
206
206
  break;
207
207
  case 'waze':