mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-12-15 02:10:30 +08:00
Added Geolocation API interfaces, callbacks and data structures.
This commit is contained in:
parent
ef011d429d
commit
65c92aab1f
@ -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();
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
@ -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);
|
||||
}
|
@ -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();
|
||||
}
|
@ -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();
|
||||
}
|
@ -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);
|
||||
}
|
@ -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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user