We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903066f commit 16949deCopy full SHA for 16949de
src/core/index.android.ts
@@ -167,11 +167,11 @@ export function toNativeScreenPos(position: ScreenPos) {
167
// };
168
// }
169
170
-export function fromNativeMapRange(value: NTMapRange) {
+export function fromNativeMapRange(value: com.carto.core.MapRange) {
171
return [value.getMax(), value.getMin()] as MapRange;
172
}
173
export function toNativeMapRange(value: MapRange) {
174
- if (value instanceof NTMapRange) {
+ if (value instanceof com.carto.core.MapRange) {
175
return value;
176
177
// ignore z for now as points can get under the map!
0 commit comments