Skip to content

Commit 002b0f7

Browse files
committed
release: 0.1.3
Bump every module package to 0.1.3 and advance all submodules to their 0.1.3 release commits on main. Also registers react-for-tomtom / react-for-maptiler / react-for-longdo in .gitmodules, and follows the ios-sdk rename of MapConductorMarkerCluster to MapConductorMarkerClustering in the marker-clustering podspec, renderer and the reactnative-basic Podfile.
1 parent 29bebb0 commit 002b0f7

41 files changed

Lines changed: 207 additions & 66 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitmodules

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,12 @@
5858
[submodule "react-for-azuremaps"]
5959
path = react-for-azuremaps
6060
url = git@github.com:mapconductor/react-for-azuremaps
61+
[submodule "react-for-longdo"]
62+
path = react-for-longdo
63+
url = git@github.com:mapconductor/react-for-longdo
64+
[submodule "react-for-tomtom"]
65+
path = react-for-tomtom
66+
url = git@github.com:mapconductor/react-for-tomtom
67+
[submodule "react-for-maptiler"]
68+
path = react-for-maptiler
69+
url = git@github.com:mapconductor/react-for-maptiler

examples/basic/src/providers/singleton/ArcGISSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Fragment } from 'react';
2-
import { ArcGISMapView, ArcGISMapView2D, type ArcGISViewState } from '@mapconductor/react-for-arcgis';
2+
import { ArcGISMapView, ArcGISMapView2D, type ArcGISMapViewStateInterface } from '@mapconductor/react-for-arcgis';
33
import type { SingletonMapContent } from './types';
44

55
export default function ArcGISSingletonView({ state, content, useSceneView }: {
6-
state: ArcGISViewState;
6+
state: ArcGISMapViewStateInterface;
77
content: SingletonMapContent | null;
88
useSceneView: boolean;
99
}) {

examples/basic/src/providers/singleton/AzureMapsSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Fragment } from 'react';
2-
import { AzureMapsMapView, type AzureMapsViewState } from '@mapconductor/react-for-azuremaps';
2+
import { AzureMapsMapView, type AzureMapsViewStateInterface } from '@mapconductor/react-for-azuremaps';
33
import '@mapconductor/react-for-azuremaps/style.css';
44
import type { SingletonMapContent } from './types';
55

66
export default function AzureMapsSingletonView({ state, content }: {
7-
state: AzureMapsViewState;
7+
state: AzureMapsViewStateInterface;
88
content: SingletonMapContent | null;
99
}) {
1010
return (

examples/basic/src/providers/singleton/CesiumSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Fragment } from 'react';
2-
import { CesiumMapView, type CesiumMapViewState } from '@mapconductor/react-for-cesium';
2+
import { CesiumMapView, type CesiumMapViewStateInterface } from '@mapconductor/react-for-cesium';
33
import '@mapconductor/react-for-cesium/style.css';
44
import type { SingletonMapContent } from './types';
55

66
export default function CesiumSingletonView({ state, content }: {
7-
state: CesiumMapViewState;
7+
state: CesiumMapViewStateInterface;
88
content: SingletonMapContent | null;
99
}) {
1010
return (

examples/basic/src/providers/singleton/HereSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Fragment, useMemo } from 'react';
2-
import { HereMapView2D, type HereViewState } from '@mapconductor/react-for-here';
2+
import { HereMapView2D, type HereViewStateInterface } from '@mapconductor/react-for-here';
33
import type { SingletonMapContent } from './types';
44

55
export default function HereSingletonView({ state, content }: {
6-
state: HereViewState;
6+
state: HereViewStateInterface;
77
content: SingletonMapContent | null;
88
}) {
99
// HERE Maps API for JavaScript is loaded from CDN (see index.html); the

examples/basic/src/providers/singleton/LeafletSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Fragment } from 'react';
2-
import { LeafletMapView, type LeafletMapViewState } from '@mapconductor/react-for-leaflet';
2+
import { LeafletMapView, type LeafletMapViewStateInterface } from '@mapconductor/react-for-leaflet';
33
import '@mapconductor/react-for-leaflet/style.css';
44
import type { SingletonMapContent } from './types';
55

66
export default function LeafletSingletonView({ state, content }: {
7-
state: LeafletMapViewState;
7+
state: LeafletMapViewStateInterface;
88
content: SingletonMapContent | null;
99
}) {
1010
return (

examples/basic/src/providers/singleton/LongdoSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Fragment } from 'react';
2-
import { LongdoMapView2D, type LongdoViewState } from '@mapconductor/react-for-longdo';
2+
import { LongdoMapView2D, type LongdoViewStateInterface } from '@mapconductor/react-for-longdo';
33
import type { SingletonMapContent } from './types';
44

55
export default function LongdoSingletonView({ state, content }: {
6-
state: LongdoViewState;
6+
state: LongdoViewStateInterface;
77
content: SingletonMapContent | null;
88
}) {
99
if (!state.apiKey) {

examples/basic/src/providers/singleton/MapKitSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { Fragment } from 'react';
2-
import { MapKitMapView, type MapKitViewState } from '@mapconductor/react-for-mapkit';
2+
import { MapKitMapView, type MapKitViewStateInterface } from '@mapconductor/react-for-mapkit';
33
import type { SingletonMapContent } from './types';
44

55
export default function MapKitSingletonView({ state, content }: {
6-
state: MapKitViewState;
6+
state: MapKitViewStateInterface;
77
content: SingletonMapContent | null;
88
}) {
99
return (

examples/basic/src/providers/singleton/MapLibreSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Fragment } from 'react';
2-
import { MapLibreMapView, MapLibreMapView2D, type MapLibreViewState } from '@mapconductor/react-for-maplibre';
2+
import { MapLibreMapView, MapLibreMapView2D, type MapLibreViewStateInterface } from '@mapconductor/react-for-maplibre';
33
import '@mapconductor/react-for-maplibre/style.css';
44
import type { SingletonMapContent } from './types';
55

66
export default function MapLibreSingletonView({ state, content, useGlobe }: {
7-
state: MapLibreViewState;
7+
state: MapLibreViewStateInterface;
88
content: SingletonMapContent | null;
99
useGlobe: boolean;
1010
}) {

examples/basic/src/providers/singleton/MapTilerSingletonView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Fragment } from 'react';
2-
import { MapTilerMapView2D, type MapTilerViewState } from '@mapconductor/react-for-maptiler';
2+
import { MapTilerMapView2D, type MapTilerViewStateInterface } from '@mapconductor/react-for-maptiler';
33
import '@mapconductor/react-for-maptiler/style.css';
44
import type { SingletonMapContent } from './types';
55

66
export default function MapTilerSingletonView({ state, content }: {
7-
state: MapTilerViewState;
7+
state: MapTilerViewStateInterface;
88
content: SingletonMapContent | null;
99
}) {
1010
if (!state.apiKey) {

0 commit comments

Comments
 (0)