Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Map - support Azure provider #28122

Merged
merged 6 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/devextreme-scss/scss/widgets/base/_map.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
left: 0;
background: rgba(0, 0, 0, 0.01);
opacity: 0.01;
pointer-events: all;
}

.dx-map-marker {
Expand Down
3 changes: 3 additions & 0 deletions packages/devextreme/js/__internal/ui/map/m_map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ import { addNamespace } from '@js/events/utils/index';
import errors from '@js/ui/widget/ui.errors';
import Widget from '@js/ui/widget/ui.widget';

import azure from './m_provider.dynamic.azure';
import bing from './m_provider.dynamic.bing';
import google from './m_provider.dynamic.google';
// NOTE external urls must have protocol explicitly specified (because inside Cordova package the protocol is "file:")
import googleStatic from './m_provider.google_static';

const PROVIDERS = {
azure,
googleStatic,
google,
bing,
Expand Down Expand Up @@ -199,6 +201,7 @@ const Map = Widget.inherit({
case 'disabled':
this._renderShield();
this.callBase(args);
this._queueAsyncAction('updateDisabled');
break;
case 'width':
case 'height':
Expand Down
Loading
Loading