Родитель
4e6893883b
Коммит
d8243a6918
|
@ -40,7 +40,9 @@ const DefaultMap: React.FC = () => {
|
|||
]
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div style={{
|
||||
height: '300px'
|
||||
}}>
|
||||
<AzureMapsProvider>
|
||||
<AzureMap options={option}>
|
||||
<AzureMapDataSourceProvider id={'default DataSourceProvider'}>
|
||||
|
|
|
@ -183,11 +183,11 @@ const MarkersExample: React.FC = () => {
|
|||
console.log('Data on source added', e)
|
||||
}
|
||||
}}
|
||||
id={'myDump AzureMapDataSourceProvider'}
|
||||
id={'markersExample AzureMapDataSourceProvider'}
|
||||
options={{ cluster: true }}
|
||||
>
|
||||
<AzureMapLayerProvider
|
||||
id={'myDump AzureMapLayerProvider'}
|
||||
id={'markersExample AzureMapLayerProvider'}
|
||||
options={{
|
||||
textOptions: {
|
||||
textField: ['get', 'title'], //Specify the property name that contains the text you want to appear with the symbol.
|
||||
|
|
|
@ -71,22 +71,24 @@ const PopupExample: React.FC = () => {
|
|||
Close Popup
|
||||
</Button>
|
||||
</div>
|
||||
<AzureMapsProvider>
|
||||
<AzureMap options={option}>
|
||||
<AzureMapPopup
|
||||
isVisible={isVisible}
|
||||
options={popupOptions}
|
||||
popupContent={
|
||||
<div style={wrapperStyles.popupStyles}>Hello World</div>
|
||||
}
|
||||
/>
|
||||
<AzureMapHtmlMarker
|
||||
isPopupVisible={isHtmlMarkerPopupVisible}
|
||||
markerContent={<div className="pulseIcon"></div>}
|
||||
options={htmlMarkerOptions}
|
||||
/>
|
||||
</AzureMap>
|
||||
</AzureMapsProvider>
|
||||
<div style={wrapperStyles.map}>
|
||||
<AzureMapsProvider>
|
||||
<AzureMap options={option}>
|
||||
<AzureMapPopup
|
||||
isVisible={isVisible}
|
||||
options={popupOptions}
|
||||
popupContent={
|
||||
<div style={wrapperStyles.popupStyles}>Hello World</div>
|
||||
}
|
||||
/>
|
||||
<AzureMapHtmlMarker
|
||||
isPopupVisible={isHtmlMarkerPopupVisible}
|
||||
markerContent={<div className="pulseIcon"></div>}
|
||||
options={htmlMarkerOptions}
|
||||
/>
|
||||
</AzureMap>
|
||||
</AzureMapsProvider>
|
||||
</div>
|
||||
</Paper>
|
||||
</div>
|
||||
)
|
||||
|
@ -94,7 +96,7 @@ const PopupExample: React.FC = () => {
|
|||
|
||||
export const wrapperStyles = {
|
||||
map: {
|
||||
height: '300px'
|
||||
height: '500px'
|
||||
},
|
||||
wrapper: {
|
||||
padding: '15px',
|
||||
|
|
Загрузка…
Ссылка в новой задаче