登录
首页 » Android » 百度地图,定位,路线规划

百度地图,定位,路线规划

于 2022-01-24 发布 文件大小:3.05 MB
0 96
下载积分: 2 下载次数: 1

代码说明:

百度地图的定位和路线规划,精准,清晰,代码清晰明了,有注释,比较适合初学者学习,使用,导入工具可直接使用,学习。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • com
    SignalA修改后的源码,支持android2.2及以上(SignalA modified source code, support android2.2 and above)
    2013-11-04 13:08:31下载
    积分:1
  • Android 学习TweenAnimation动画让一张图片360度旋转
    这是一个Android TweenAnimation动画让一张图片360度旋转,在android虚拟机上运行后,单击“观看动画”按钮后,图像即开始旋转,旋转N圈后自动停止,并自动减慢速度停止,保持最后的状态。来看相关的代码(并非完整代码):   public void onCreate(Bundle savedInstanceState) {   super.onCreate(savedInstanceState);   setContentView(R.layout.main);   final ImageView iv = (ImageView)findViewById(R.id.iv);   Button btn = (Button)findViewById(R.id.btn);   final Animation anim1 = AnimationUtils.loadAnimation(this, R.anim.anim1);   final Animation anim2 = AnimationUtils.loadAnimation(this, R.anim.anim2);   anim1.setFillAfter(true);//保持最后的状态   anim2.setFillAfter(true);   final Handler h = new Handler(){    @Override    public void handleMessage(Message msg) {    if(msg.what == 0x11){    iv.startAnimation(anim2);    }    }   };
    2022-12-18 04:35:03下载
    积分:1
  • c++截图实例源码下载
     截图
    2014-01-07下载
    积分:1
  • 基于Matlab的多频外差模拟程序
    本程序是记忆李中伟博士的博士论文来实现;Matlab仿真代码;测试通过;
    2019-04-16下载
    积分:1
  • android open gl 示例代码下载
    [实例简介]Open GL 入门级示例 [实例截图] [核心代码]package com.china.gltry;import javax.microedition.khronos.egl.EGL10;import javax.microedition.khronos.egl.EGL11;import javax.microedition.khronos.egl.EGLConfig;import javax.microedition.khronos.egl.EGLContext;import javax.microedition.khronos.egl.EGLDisplay;import javax.microedition.khronos.egl.EGLSurface;import javax.microedition.khronos.opengles.GL;import android.view.SurfaceHolder;/** * An EGL helper class. */public class EGLHelper{ public EGLHelper() { } /** * Initialize EGL for a given configuration spec. * @param configSpec */ public void start(int[] configSpec){ /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); /* * We can now initialize EGL for that display */ int[] version = new int[2]; mEgl.eglInitialize(mEglDisplay, version); EGLConfig[] configs = new EGLConfig[1]; int[] num_config = new int[1]; mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, num_config); mEglConfig = configs[0]; /* * Create an OpenGL ES context. This must be done only once, an * OpenGL context is a somewhat heavy object. */ mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null); mEglSurface = null; } /* * Create and return an OpenGL surface */ public GL createSurface(SurfaceHolder holder) { /* * The window size has changed, so we need to create a new * surface. */ if (mEglSurface != null) { /* * Unbind and destroy the old EGL surface, if * there is one. */ mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); } /* * Create an EGL surface we can render into. */ mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, null); /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); GL gl = mEglContext.getGL(); return gl; } /** * Display the current render surface. * @return false if the context has been lost. */ public boolean swap() { mEgl.eglSwapBuffers(mEglDisplay, mEglSurface); /* * Always check for EGL_CONTEXT_LOST, which means the context * and all associated data were lost (For instance because * the device went to sleep). We need to sleep until we * get a new surface. */ return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; } public void finish() { if (mEglSurface != null) { mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); mEglSurface = null; } if (mEglContext != null) { mEgl.eglDestroyContext(mEglDisplay, mEglContext); mEglContext = null; } if (mEglDisplay != null) { mEgl.eglTerminate(mEglDisplay); mEglDisplay = null; } } EGL10 mEgl; EGLDisplay mEglDisplay; EGLSurface mEglSurface; EGLConfig mEglConfig; EGLContext mEglContext;}
    2015-04-06下载
    积分:1
  • android xmmp 聊天demO
    android xmmp 聊天demO, 可以做为研究xmmp 的参考代码,
    2022-03-15 11:19:41下载
    积分:1
  • android 一键锁屏实例源码下载
    android 一键锁屏实例源码下载
    2014-09-02下载
    积分:1
  • PulseSensor demo
    说明:  心率传感器,下机位arduino程序,拷入开发板中处理数据(Heart Rate Sensor, Arduino Program)
    2019-04-11 08:19:06下载
    积分:1
  • 腾讯新浪微博模拟登录最新源码
    腾讯新浪微博模拟登录最新源码
    2013-04-22下载
    积分:1
  • 蓝牙智能车android遥控程序
    本程序的功能是通过蓝牙遥控智能车的运动轨迹,蓝牙模块放在智能车上,并为其接通电源。在安卓程序界面中有5个控制按钮,分别是实现对玩具车的向前、左转、右转、后退和停止的控制。其中难度较大的是双向控制,即实现每个设备都可以操控另外一个设备的功能,此时就需要有蓝牙功能的电脑或者另外的一部android手机来完成测试。
    2022-12-06 05:35:03下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载