* feat: layer feature injected

* fix: syles updated
This commit is contained in:
Patryk Średnicki 2020-02-08 21:49:27 +01:00 коммит произвёл GitHub
Родитель 4e6893883b
Коммит d8243a6918
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 24 добавлений и 20 удалений

Просмотреть файл

@ -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',