百度地图商户更名声明

时间:2019-05-14 13:49:41下载本文作者:会员上传
简介:写写帮文库小编为你整理了多篇相关的《百度地图商户更名声明》,但愿对你工作学习有帮助,当然你在写写帮文库还可以找到更多《百度地图商户更名声明》。

第一篇:百度地图商户更名声明

百度地图标注免责声明

我公司自愿将现有商户名称

更改为

,并承担由此带来的一切问题(如客户投诉等),百度地图不承担由此带来的任何后果。

机构盖章:倍全

授权代表签字:倍全

年 月 日

第二篇:百度地图认领确认书word版格式

百度地图商户类POI认领确认书

北京百度网讯科技有限公司:

我司(公司名称:____________________________,公司地址: _____________________________________________________,公司电话:___________________________)现授权委托我司员工:___________,性别:_______,身份证号码:_____________________________,手机号:_______________办理百度地图商户类POI认领、标记等事务,授权有效期________年______月_____日 至:________年______月____日。

我司承诺已阅读并严格遵守百度地图所有服务条款及百度地图商户类poi免费标注规则及要求。同时我司承诺:我司提供的信息、资料等真实、合法、有效,且我司认领、标注的POI为我司真实POI。

如我司违反以上承诺,则我司承担所有法律责任。本承诺书我司无权单方撤回、修改、变更。

公司(公章)年 月 日

买农村家庭散养土鸡蛋,加V 44-02-44-36

1枚不正宗,1单免费送!破损包赔!

第三篇:android百度地图api实现短信接收定位

工程文件结构:

demoApplication.java package com.gy.mymaps;

import android.app.Application;import android.content.Context;import android.widget.Toast;

import com.baidu.mapapi.BMapManager;import com.baidu.mapapi.MKGeneralListener;import com.baidu.mapapi.map.MKEvent;

public class DemoApplication extends Application {

private static DemoApplication mInstance = null;

public boolean m_bKeyRight = true;

BMapManager mBMapManager = null;

@Override

public void onCreate(){

super.onCreate();

mInstance = this;

initEngineManager(this);}

public void initEngineManager(Context context){

if(mBMapManager == null){

mBMapManager = new BMapManager(context);

}

if(!mBMapManager.init(new MyGeneralListener())){

Toast.makeText(DemoApplication.getInstance().getApplicationContext(),“BMapManager初始化错误!”, Toast.LENGTH_LONG).show();

} }

public static DemoApplication getInstance(){

return mInstance;}

// 常用事件监听,用来处理通常的网络错误,授权验证错误等

static class MyGeneralListener implements MKGeneralListener {

public void onGetNetworkState(int iError){

if(iError == MKEvent.ERROR_NETWORK_CONNECT){

Toast.makeText(DemoApplication.getInstance().getApplicationContext(), “您的网络出错啦!”,Toast.LENGTH_LONG).show();

}

else if(iError == MKEvent.ERROR_NETWORK_DATA){

Toast.makeText(DemoApplication.getInstance().getApplicationContext(), “输入正确的检索条件!”,Toast.LENGTH_LONG).show();

}

//...}

public void onGetPermissionState(int iError){

//非零值表示key验证未通过

if(iError!= 0){

//鎺堟潈Key閿欒锛�

Toast.makeText(DemoApplication.getInstance().getApplicationContext(),“请输入正确的授权Key,并检查您的网络连接是否正常!error: ”+iError, Toast.LENGTH_LONG).show();

DemoApplication.getInstance().m_bKeyRight = false;

}

else{

DemoApplication.getInstance().m_bKeyRight = true;

Toast.makeText(DemoApplication.getInstance().getApplicationContext(),“key认证成功”, Toast.LENGTH_LONG).show();

}

}

} } Mainactivity.java: package com.gy.mymaps;

import java.util.List;

import android.annotation.SuppressLint;import android.app.Activity;import android.content.ContentValues;import android.database.ContentObserver;import android.database.Cursor;import android.graphics.drawable.Drawable;import android.net.Uri;import android.os.Build;import android.os.Bundle;import android.os.Handler;import android.telephony.SmsManager;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;import android.widget.Toast;

import com.baidu.mapapi.BMapManager;import com.baidu.mapapi.map.ItemizedOverlay;import com.baidu.mapapi.map.MapView;import com.baidu.mapapi.map.OverlayItem;import com.baidu.mapapi.search.MKAddrInfo;import com.baidu.mapapi.search.MKBusLineResult;import com.baidu.mapapi.search.MKDrivingRouteResult;import com.baidu.mapapi.search.MKPoiResult;import com.baidu.mapapi.search.MKSearch;import com.baidu.mapapi.search.MKSearchListener;import com.baidu.mapapi.search.MKShareUrlResult;import com.baidu.mapapi.search.MKSuggestionResult;import com.baidu.mapapi.search.MKTransitRouteResult;import com.baidu.mapapi.search.MKWalkingRouteResult;import com.baidu.platform.comapi.basestruct.GeoPoint;//import com.gy.msmsend.R;public class MainActivity extends Activity { //UI相关

Button mBtnReverseGeoCode = null;// 将坐标反编码为地址

Button mBtnGeoCode = null;// 将地址编码为坐标

Button msmSend =null;//短信发送按钮

//地图相关

MapView mMapView = null;// 地图View

//搜索相关

MKSearch mSearch = null;// 搜索模块,也可去掉地图模块独立使用

EditText phoneText;

String[] as;

String city=null;

String pos=null;

Drawable marker;

int png=0;

//

protected void onCreate(Bundle savedInstanceState){

super.onCreate(savedInstanceState);

/*

* 注册短信变化事件监听

*/

SmsContent content = new SmsContent(new Handler());

//注册短信变化监听

this.getContentResolver().registerContentObserver(Uri.parse(“content://sms/”), true, content);

//注册短信变化监听

/**

* 使用地图sdk前需先初始化BMapManager.* BMapManager是全局的,可为多个MapView共用,它需要地图模块创建前创建,* 并在地图地图模块销毁后销毁,只要还有地图模块在使用,BMapManager就不应该销毁

*/

DemoApplication app =(DemoApplication)this.getApplication();

if(app.mBMapManager == null){

app.mBMapManager = new BMapManager(getApplicationContext());

/**

* 如果BMapManager没有初始化则初始化BMapManager

*/

app.mBMapManager.init(new DemoApplication.MyGeneralListener());

}

setContentView(R.layout.activity_main);

CharSequence titleLable=“我的位置”;

setTitle(titleLable);

//地图初始化

mMapView =(MapView)findViewById(R.id.bmapView);

mMapView.getController().enableClick(true);

mMapView.getController().setZoom(12);

// 初始化搜索模块,注册事件监听

mSearch = new MKSearch();

mSearch.init(app.mBMapManager, new MKSearchListener(){

public void onGetPoiDetailSearchResult(int type, int error){

}

public void onGetAddrResult(MKAddrInfo res, int error){

if(error!= 0){

String str = String.format(“错误号:%d”, error);

Toast.makeText(MainActivity.this, str, Toast.LENGTH_LONG).show();

return;

}

//地图移动到该点

mMapView.getController().animateTo(res.geoPt);

if(res.type == MKAddrInfo.MK_GEOCODE){

//地理编码:通过地址检索坐标点

String strInfo = String.format(“纬度:%f 经度:%f”, res.geoPt.getLatitudeE6()/1e6, res.geoPt.getLongitudeE6()/1e6);

Toast.makeText(MainActivity.this, strInfo, Toast.LENGTH_LONG).show();

}

if(res.type == MKAddrInfo.MK_REVERSEGEOCODE){

//反地理编码:通过坐标点检索详细地址及周边poi

String strInfo = res.strAddr;

Toast.makeText(MainActivity.this, strInfo, Toast.LENGTH_LONG).show();

EditText editGeoCodeKey =(EditText)findViewById(R.id.geocodekey);

//设置城市

editGeoCodeKey.setText(strInfo);

}

//生成ItemizedOverlay图层用来标注结果点

ItemizedOverlay itemOverlay = new ItemizedOverlay(null, mMapView);

//生成Item

OverlayItem item = new OverlayItem(res.geoPt, “", null);

//为maker定义位置和边界

marker.setBounds(0, 0, marker.getIntrinsicWidth(), marker.getIntrinsicHeight());

//给item设置marker

item.setMarker(marker);

//在图层上添加item

itemOverlay.addItem(item);

//清除地图其他图层

mMapView.getOverlays().clear();

//添加一个标注ItemizedOverlay图层

mMapView.getOverlays().add(itemOverlay);

//执行刷新使生效

mMapView.refresh();

}

public void onGetPoiResult(MKPoiResult res, int type, int error){

}

public void onGetDrivingRouteResult(MKDrivingRouteResult res, int error){

}

public void onGetTransitRouteResult(MKTransitRouteResult res, int error){

}

public void onGetWalkingRouteResult(MKWalkingRouteResult res, int error){

}

public void onGetBusDetailResult(MKBusLineResult result, int iError){

}

public void onGetSuggestionResult(MKSuggestionResult res, int arg1){

}

public void onGetShareUrlResult(MKShareUrlResult result, int type,int error){

// TODO Auto-generated method stub

}

});

// 设定地理编码及反地理编码按钮的响应

mBtnReverseGeoCode =(Button)findViewById(R.id.reversegeocode);

mBtnGeoCode =(Button)findViewById(R.id.geocode);

msmSend =(Button)findViewById(R.id.sendButton);

OnClickListener clickListener = new OnClickListener(){

public void onClick(View v){

SearchButtonProcess(v);

}

};

mBtnReverseGeoCode.setOnClickListener(clickListener);

mBtnGeoCode.setOnClickListener(clickListener);

msmSend.setOnClickListener(clickListener);

} /**

* 发起搜索

* @param v

*/ void SearchButtonProcess(View v){

if(mBtnReverseGeoCode.equals(v)){

EditText lat =(EditText)findViewById(R.id.lat);

EditText lon =(EditText)findViewById(R.id.lon);

//得到需要标在地图上的资源

marker = getResources().getDrawable(R.drawable.ic_mark0);

GeoPoint ptCenter = GeoPoint((int)(Float.valueOf(lat.getText().toString())*1e6),(int)(Float.valueOf(lon.getText().toString())*1e6));

//反Geo搜索

mSearch.reverseGeocode(ptCenter);

} else if(mBtnGeoCode.equals(v)){

new

EditText editCity =(EditText)findViewById(R.id.city);

EditText editGeoCodeKey =(EditText)findViewById(R.id.geocodekey);

//得到需要标在地图上的资源

marker = getResources().getDrawable(R.drawable.ic_mark0);

//Geo搜索

mSearch.geocode(editGeoCodeKey.getText().toString(),editCity.getText().toString());

}else if(msmSend.equals(v)){

phoneText =(EditText)findViewById(R.id.tel);

//发送短信

sendMessage();

} }

@Override

protected void onPause(){

mMapView.onPause();

super.onPause();

}

@Override

protected void onResume(){

mMapView.onResume();

super.onResume();

}

@Override

protected void onDestroy(){

mMapView.destroy();

mSearch.destory();

super.onDestroy();

}

@Override

protected void onSaveInstanceState(Bundle outState){

super.onSaveInstanceState(outState);

mMapView.onSaveInstanceState(outState);

}

@Override

protected void onRestoreInstanceState(Bundle savedInstanceState){

super.onRestoreInstanceState(savedInstanceState);

mMapView.onRestoreInstanceState(savedInstanceState);

}

/**

*

*/

private void sendMessage(){

// 获取文本框中的内容

String phone_num = phoneText.getText().toString();

String content =”QUERY“;

SmsManager smsMagager = SmsManager.getDefault();

if(content.length()> 70){

List sms = smsMagager.divideMessage(content);

for(String con : sms){

smsMagager.sendTextMessage(phone_num, null, con, null, null);

}

} else {

smsMagager.sendTextMessage(phone_num, null, content, null, null);

}

Toast.makeText(MainActivity.this,R.string.info, Toast.LENGTH_LONG).show();

}

/*

* 监听短信数据库

*/

class SmsContent extends ContentObserver {

private Cursor cursor = null;@SuppressLint(”ShowToast“)public SmsContent(Handler handler){

super(handler);

// TODO Auto-generated constructor stu

}

@SuppressWarnings(”deprecation“)

@Override

public void onChange(boolean selfChange){

// TODO Auto-generated method stub

super.onChange(selfChange);

EditText phonenum=(EditText)findViewById(R.id.tel);

String telnum=”+86“+phonenum.getText().toString();

// 读取收件箱中指定号码的短信

cursor = managedQuery(Uri.parse(”content://sms/inbox“),new String[] { ”_id“, ”address“, ”read“, ”body“ },” address=? and read=?“,new String[] {telnum,”0“ }, ”_id desc“);

// 按id排序,如果按date排序的话,修改手机时间后,读取的短信就不准了

if(cursor!= null && cursor.getCount()> 0){

ContentValues values = new ContentValues();

values.put(”read“, ”1“);// 修改短信为已读模式

cursor.moveToNext();

int smsbodyColumn = cursor.getColumnIndex(”body“);String smsBody = cursor.getString(smsbodyColumn);

getmypos(smsBody);

//开启搜索

//经纬度

EditText lat =(EditText)findViewById(R.id.lat);EditText lon =(EditText)findViewById(R.id.lon);//设置输入框的内容

lat.setText(as[2]);lon.setText(as[1]);//得到需要标在地图上的资源

getpng(png);GeoPoint ptCenter = new GeoPoint((int)(Float.valueOf(lat.getText().toString())*1e6),(int)(Float.valueOf(lon.getText().toString())*1e6));//反Geo搜索

mSearch.reverseGeocode(ptCenter);

}

// 在用managedQuery的时候,不能主动调用close()方法,否则在

android:layout_height=”match_parent“

tools:context=”.MainActivity“ >

android:id=”@+id/bmapView“

android:layout_width=”fill_parent“

android:layout_height=”fill_parent“

android:clickable=”true“ />

android:id=”@+id/lat“

android:layout_width=”125dp“

android:layout_height=”wrap_content“

android:layout_alignParentLeft=”true“

android:layout_alignParentTop=”true“

android:ems=”10“

android:text=”39.904965“ />

android:id=”@+id/reversegeocode“

android:layout_width=”wrap_content“

android:layout_height=”wrap_content“

android:layout_alignBaseline=”@+id/lat“

android:layout_alignBottom=”@+id/lat“

android:layout_alignParentRight=”true“

android:text=”查找“ />

android:id=”@+id/geocode“

android:layout_width=”wrap_content“

android:layout_height=”wrap_content“

android:layout_alignParentRight=”true“

android:layout_alignTop=”@+id/geocodekey“ android:text=”查找“ />

android:id=”@+id/sendButton“

android:layout_width=”wrap_content“

android:layout_height=”wrap_content“

android:layout_alignBottom=”@+id/tel“

android:layout_alignParentRight=”true“

android:text=”发送“ />

” android:id=“@+id/lon”

android:layout_width=“125dp”

android:layout_height=“wrap_content”

android:layout_alignTop=“@+id/reversegeocode”

android:layout_toRightOf=“@+id/lat”

android:ems=“10”

android:text=“116.327764” />

android:id=“@+id/geocodekey”

android:layout_width=“250dp”

android:layout_height=“wrap_content”

android:layout_alignParentLeft=“true”

android:layout_below=“@+id/reversegeocode”

android:ems=“20”

android:text=“北京市海淀区上地十街10号” >

android:id=“@+id/city”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_below=“@+id/reversegeocode”

android:layout_toLeftOf=“@+id/geocode”

android:ems=“10”

android:text=“" />

android:id=”@+id/tel“

android:layout_width=”250dp“

android:layout_height=”wrap_content“

android:layout_alignParentLeft=”true“

android:layout_below=”@+id/geocodekey“

android:ems=”15“

android:text=”1503769891“ />

Manifest.xml:

package=”com.gy.mymaps“

android:versionCode=”1“

android:versionName=”1.0“ >

android:minSdkVersion=”10“

android:targetSdkVersion=”10“ />

android:name=”com.gy.mymaps.DemoApplication“

android:debuggable=”true“

android:allowBackup=”true“

android:icon=”@drawable/ic_launcher“

android:label=”@string/app_name“

android:theme=”@style/AppTheme“ >

android:name=”com.baidu.lbsapi.API_KEY“

android:value=”O5h23uRrcyxbaiZs3w7skruP“ />

android:name=”com.gy.mymaps.MainActivity“

android:label=”@string/app_name“ >

/> />

android:name=”com.android.launcher.permission.READ_SETTINGS“ />

android:name=”android.permission.WRITE_EXTERNAL_STORAGE“ />

android:anyDensity=”true“

android:largeScreens=”true“

android:normalScreens=”false“

android:resizeable=”true“

android:smallScreens=”true“ />

String.xml:

mymaps

Settings 短信发送成功

该app是通过发送QUEST到一个返回位置信息的设备,返回的短信 接收的短信格式(可以通过修改字符串处理方法来修改处理方法): #Lon=116486291,Lat=39899332,Speed=0,Alt=65,Direction=0#

下载百度地图商户更名声明word格式文档
下载百度地图商户更名声明.doc
将本文档下载到自己电脑,方便修改和收藏,请勿使用迅雷等下载。
点此处下载文档

文档为doc格式


声明:本文内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:645879355@qq.com 进行举报,并提供相关证据,工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。

相关范文推荐