- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我要为 Android 平台开发一款基于位置的游戏。我想在随机坐标(用户位置周围)但在路上创建一个标记!此外,我将从这一点 (A) 到第二个随机点 (B) 为该标记制作动画。有什么想法吗?
谢谢!
ps.我用的是Nutiteq 3D map app的示例代码
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import com.nutiteq.MapView;
import com.nutiteq.components.Color;
import com.nutiteq.components.Components;
import com.nutiteq.components.MapPos;
import com.nutiteq.components.Options;
import com.nutiteq.geometry.Marker;
import com.nutiteq.log.Log;
import com.nutiteq.projections.EPSG3857;
import com.nutiteq.projections.Projection;
import com.nutiteq.rasterlayers.TMSMapLayer;
import com.nutiteq.style.MarkerStyle;
import com.nutiteq.ui.DefaultLabel;
import com.nutiteq.ui.Label;
import com.nutiteq.utils.UnscaledBitmapLoader;
import com.nutiteq.vectorlayers.MarkerLayer;
public class MainActivity extends Activity {
private MapView mapView;
@SuppressLint("NewApi")
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// enable logging for troubleshooting - optional
Log.enableAll();
Log.setTag("hellomap");
// 1. Get the MapView from the Layout xml - mandatory
mapView = (MapView) findViewById(R.id.mapView);
// Optional, but very useful: restore map state during device rotation,
// it is saved in onRetainNonConfigurationInstance() below
Components retainObject = (Components) getLastNonConfigurationInstance();
if (retainObject != null) {
// just restore configuration and update listener, skip other initializations
mapView.setComponents(retainObject);
MyLocationMapEventListener mapListener = (MyLocationMapEventListener) mapView.getOptions().getMapListener();
mapListener.reset(this, mapView);
mapView.startMapping();
return;
} else {
// 2. create and set MapView components - mandatory
mapView.setComponents(new Components());
}
// 3. Define map layer for basemap - mandatory.
// Here we use MapQuest open tiles
// Almost all online tiled maps use EPSG3857 projection.
TMSMapLayer mapLayer = new TMSMapLayer(new EPSG3857(), 0, 18, 0,
"http://otile1.mqcdn.com/tiles/1.0.0/osm/", "/", ".png");
mapView.getLayers().setBaseLayer(mapLayer);
// set initial map view camera - optional. "World view" is default
// Location: San Francisco
// NB! it must be in base layer projection (EPSG3857), so we convert it from lat and long
mapView.setFocusPoint(mapView.getLayers().getBaseLayer().getProjection().fromWgs84(-122.41666666667f, 37.76666666666f));
// rotation - 0 = north-up
mapView.setRotation(0f);
// zoom - 0 = world, like on most web maps
mapView.setZoom(10.0f);
// tilt means perspective view. Default is 90 degrees for "normal" 2D map view, minimum allowed is 30 degrees.
mapView.setTilt(75.0f);
// Activate some mapview options to make it smoother - optional
mapView.getOptions().setPreloading(true);
mapView.getOptions().setSeamlessHorizontalPan(true);
mapView.getOptions().setTileFading(true);
mapView.getOptions().setKineticPanning(true);
mapView.getOptions().setDoubleClickZoomIn(true);
mapView.getOptions().setDualClickZoomOut(true);
// set sky bitmap - optional, default - white
mapView.getOptions().setSkyDrawMode(Options.DRAW_BITMAP);
mapView.getOptions().setSkyOffset(4.86f);
mapView.getOptions().setSkyBitmap(
UnscaledBitmapLoader.decodeResource(getResources(),
R.drawable.sky_small));
// Map background, visible if no map tiles loaded - optional, default - white
mapView.getOptions().setBackgroundPlaneDrawMode(Options.DRAW_BITMAP);
mapView.getOptions().setBackgroundPlaneBitmap(
UnscaledBitmapLoader.decodeResource(getResources(),
R.drawable.background_plane));
mapView.getOptions().setClearColor(Color.WHITE);
// configure texture caching - optional, suggested
mapView.getOptions().setTextureMemoryCacheSize(40 * 1024 * 1024);
mapView.getOptions().setCompressedMemoryCacheSize(8 * 1024 * 1024);
// define online map persistent caching - optional, suggested. Default - no caching
mapView.getOptions().setPersistentCachePath(this.getDatabasePath("mapcache").getPath());
// set persistent raster cache limit to 100MB
mapView.getOptions().setPersistentCacheSize(100 * 1024 * 1024);
// 4. Start the map - mandatory
mapView.startMapping();
// 5. Add simple marker to map.
// define marker style (image, size, color)
Bitmap pointMarker = UnscaledBitmapLoader.decodeResource(getResources(), R.drawable.olmarker);
MarkerStyle markerStyle = MarkerStyle.builder().setBitmap(pointMarker).setSize(0.5f).setColor(Color.WHITE).build();
// define label what is shown when you click on marker
Label markerLabel = new DefaultLabel("San Francisco", "Here is a marker");
// define location of the marker, it must be converted to base map coordinate system
MapPos markerLocation = mapLayer.getProjection().fromWgs84(-122.416667f, 37.766667f);
// create layer and add object to the layer, finally add layer to the map.
// All overlay layers must be same projection as base layer, so we reuse it
MarkerLayer markerLayer = new MarkerLayer(mapLayer.getProjection());
markerLayer.add(new Marker(markerLocation, markerLabel, markerStyle, null));
mapView.getLayers().addLayer(markerLayer);
// add event listener
MyLocationMapEventListener mapListener = new MyLocationMapEventListener(this, mapView);
mapView.getOptions().setMapListener(mapListener);
// add GPS My Location functionality
MyLocationCircle locationCircle = new MyLocationCircle();
mapListener.setLocationCircle(locationCircle);
initGps(locationCircle);
}
@Override
public Object onRetainNonConfigurationInstance() {
Log.debug("onRetainNonConfigurationInstance");
return this.mapView.getComponents();
}
protected void initGps(final MyLocationCircle locationCircle) {
final Projection proj = mapView.getLayers().getBaseLayer().getProjection();
LocationListener locationListener = new LocationListener()
{
public void onLocationChanged(Location location) {
if (locationCircle != null) {
locationCircle.setLocation(proj, location);
locationCircle.setVisible(true);
mapView.setFocusPoint(mapView.getLayers().getBaseLayer().getProjection().fromWgs84(location.getLongitude(), location.getLatitude()));
}
}
public void onStatusChanged(String provider, int status, Bundle extras) {
Log.debug("GPS onStatusChanged "+provider+" to "+status);
}
public void onProviderEnabled(String provider) {
Log.debug("GPS onProviderEnabled");
}
public void onProviderDisabled(String provider) {
Log.debug("GPS onProviderDisabled");
}
};
LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 10000, 100, locationListener);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, locationListener);
}
ps.This is excactly i wand to do but in android sdk http://openplans.github.io/Leaflet.AnimatedMarker/
最佳答案
您可以只使用 Nutiteq SDK 中标记的 setMapPos() 方法。
关于android - Nutiteq 3D 和 OpenStreetMaps 中的随机标记和动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17641390/
我是这种开发的新手。我正在尝试创建一个涉及 GPS 跟踪的 android 应用程序。我正在使用 Nutiteq,因为我必须使用 openstreetmap 作为默认 map 。请帮助我。 最佳答案
我已经为 Nutiteq 中的 Polygons 和 Markers 实现了我自己的自定义 MapListener 并且我可以显示 Toasts 并更改元素的颜色和其他内容,但如果我在标记或多边形上长
如何在 Nutiteq 中启用指南针模式? 有方法还是我需要自己创建定向系统? 最佳答案 我现在向 https://github.com/nutiteq/hellomap3d/ 添加了一个 Compa
我正在尝试使用包含三个 Button 的自定义 View 创建 nutiteq ViewLabel。我的代码和问题与这篇文章非常相似nutiteq: Button resp. clickable Vi
与许多其他 map API 类似,nutiteq map API 包含 MarkerLayer可以添加到 map 中。它有一个简单的方法 removing markers (例如:markerLaye
我正在尝试将标记从一个位置动画化到另一个位置。为此,我使用了 nutiteq 示例代码中的以下代码。 MapPos markerLocation0 = baseProjection.fromWgs84
我一直在研究 nutiteq map ,但随着位置的变化,我无法绘制折线。 到目前为止我试过: @Override public void onLocationChanged(Location loc
请提供一些想法,我在跟踪时使用 nutiteq map 绘制折线,但想在跟踪时同时在折线上显示标记。您的善意建议将不胜感激。谢谢 最佳答案 您应该使用带线的几何图层作为折线,并使用带标记的标记层。您可
我要为 Android 平台开发一款基于位置的游戏。我想在随机坐标(用户位置周围)但在路上创建一个标记!此外,我将从这一点 (A) 到第二个随机点 (B) 为该标记制作动画。有什么想法吗? 谢谢! p
我目前正在尝试将离线 map 导入 nutiteq。我从 OpenStreetMap 下载了一张 map ,但该 map 的扩展名为 .osm。我怎样才能将这种扩展导入到 Android? 最佳答案
最近我只是关注了 Nutiteq SDK from here. 的例子 但不幸的是,未找到 MBTilesRasterDataSource。 Eclipse 在该行的变量语句上显示错误。我检查了包 c
我在从 MapQuestApi 的 nutiteq map 上创建路线方向时遇到了一些问题,我知道如何接收所需的信息 @Override public void onSuccess(R
大家好,我已经在我的应用程序中替换了我的 GoggleMaps,因为它没有关闭 map ,因此需要按需清理堆,现在我改用 nutiteq,我正在尝试访问谷歌地图的图 block 。正如 nutiteq
我正在尝试使用以下代码在 map 上绘制一条曲线边缘的线 LineStyleBuilder lineStyleBuilder = new LineStyleBuilder();
您好,我正在开发一个基于 map 的应用程序,我在其中使用 Nutiteq 3D 库来实现 3D View 。但是现在无法在该 3D map 上绘制两点之间的路线。谁能帮我在 Nutiteq 3D 库
如果之前有人问过这个问题,我很抱歉。但是我在处理离线 3d map 时遇到了麻烦。我已经从 github 下载了源代码: https://github.com/nutiteq/hellomap3d 它
我正在寻找使用 nutiteq SDK 从 mapbox 加载 mbtiles 的方法。我知道如何使用这段代码离线加载 mbtiles // 1. Create tile data source fr
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
在你发表评论后,JaakL 我做了一些工作,这是我所能得到的。不幸的是,它还没有工作。我按照你告诉我的一步一步地做了,但每次我加载应用程序时,我只会看到一个白色的屏幕,而不是我试图加载的漂亮 map
我能够在 Android nutiteq 中制作完全自定义的 ViewLabel,定义布局设计和尺寸。但是,可点击的 View 未按预期工作。首先,我尝试通过将根布局定义为可点击来使整个标签可点击,但
我是一名优秀的程序员,十分优秀!