Added Geolocation API interfaces, callbacks and data structures.

This commit is contained in:
ScraM Team 2018-10-22 22:17:43 -07:00 committed by Alexey Andreev
parent ef011d429d
commit 65c92aab1f
7 changed files with 197 additions and 0 deletions

View File

@ -16,6 +16,7 @@
package org.teavm.jso.browser;
import org.teavm.jso.JSBody;
import org.teavm.jso.geolocation.Geolocation;
public final class Navigator {
private Navigator() {
@ -23,4 +24,10 @@ public final class Navigator {
@JSBody(script = "return navigator.onLine;")
public static native boolean isOnline();
@JSBody(script = "return navigator.geolocation;")
public static native Geolocation getGeolocation();
@JSBody(script = "return (\"geolocation\" in navigator);")
public static native boolean isGeolocationAvailable();
}

View File

@ -0,0 +1,46 @@
/*
* Copyright 2018 ScraM Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.jso.geolocation;
import org.teavm.jso.JSObject;
import org.teavm.jso.JSProperty;
/**
*
* @author ScraM Team
*/
public interface Coordinates extends JSObject {
@JSProperty
double getLatitude();
@JSProperty
double getLongitude();
@JSProperty
double getAltitude();
@JSProperty
double getAccuracy();
@JSProperty
double getAltitudeAccuracy();
@JSProperty
double getHeading();
@JSProperty
double getSpeed();
}

View File

@ -0,0 +1,27 @@
/*
* Copyright 2018 ScraM Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.jso.geolocation;
import org.teavm.jso.JSObject;
/**
*
* @author ScraM Team
*/
public abstract class Geolocation implements JSObject {
public abstract void getCurrentPosition(PositionHandler positionHandler);
public abstract void getCurrentPosition(PositionHandler positionHandler, PositionErrorHandler positionErrorHandler);
}

View File

@ -0,0 +1,28 @@
/*
* Copyright 2018 ScraM Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.jso.geolocation;
import org.teavm.jso.JSObject;
import org.teavm.jso.JSProperty;
/**
*
* @author ScraM Team
*/
public interface Position extends JSObject {
@JSProperty
Coordinates getCoords();
}

View File

@ -0,0 +1,35 @@
/*
* Copyright 2018 ScraM Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.jso.geolocation;
import org.teavm.jso.JSObject;
import org.teavm.jso.JSProperty;
/**
*
* @author ScraM Team
*/
public interface PositionError extends JSObject {
int PERMISSION_DENIED = 1;
int POSITION_UNAVAILABLE = 2;
int TIMEOUT = 3;
@JSProperty
int getCode();
@JSProperty
String getMessage();
}

View File

@ -0,0 +1,27 @@
/*
* Copyright 2018 ScraM Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.jso.geolocation;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSObject;
/**
*
*/
@JSFunctor
public interface PositionErrorHandler extends JSObject {
void handlePositionError(PositionError positionError);
}

View File

@ -0,0 +1,27 @@
/*
* Copyright 2018 ScraM Team.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.jso.geolocation;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSObject;
/**
*
*/
@JSFunctor
public interface PositionHandler extends JSObject {
void handlePosition(Position position);
}