当前位置: 首页 > news >正文

网站定制一般价格多少营销方法有哪几种

网站定制一般价格多少,营销方法有哪几种,php网站开发考试,有什么教做维c甜品的网站文章目录 1 概念介绍2 使用方法3 示例代码4 体验分享 我们在上一章回中介绍了如何实现滑动菜单相关的内容,本章回中将介绍如何获取位置信息.闲话休提,让我们一起Talk Flutter吧。 1 概念介绍 我们在这里说的获取位置信息本质上是获取当前手机所在位置的…

文章目录

  • 1 概念介绍
  • 2 使用方法
  • 3 示例代码
  • 4 体验分享

我们在上一章回中介绍了如何实现滑动菜单相关的内容,本章回中将介绍如何获取位置信息.闲话休提,让我们一起Talk Flutter吧。

在这里插入图片描述

1 概念介绍

我们在这里说的获取位置信息本质上是获取当前手机所在位置的gps坐标,就是我们常说的经纬度。获取位置信息属于原生平台提供的功能,Flutter做为UI框架并没有
提供这种功能,因此我们需要自己编写channel,然后分别在Android和IOS平台上实现相关的代码,这样做显然又回到了原生开发中,好在Flutter提供了包机制,而
且已经有三方包替我们做了这件事情,我们只需要在项目中引入并且使用三方包就可以获取到位置信息,该包的名称为:geolocator.本章回中将详细介绍它的使用方法。

2 使用方法

  1. 在yaml文件中引入geolocator包,并且通过get命令获取包中的内容到项目中;
  2. 通过包中的checkPermission()方法检查是否获取到位置权限,如果没有获取到就使用requestPermission()方法获取位置权限;
  3. 使用isLocationServiceEnabled()方法检查是否已经打开位置开关,如果没有打开就使用openLocationSettings()方法打开;
  4. 使用getCurrentPosition()方法获取当前的位置信息,该信息中包含当前位置的经纬度;
    这些使用方法还有一些注意事项需要和大家说明,以免大家在使用时出现错误:- 我们在上面步骤中介绍的方法都是异步方法,需要配合async/await关键字来使用
  • 打开位置开关的方法只能用于Android,IOS不支持这样的功能;
    此外,该包还提供了监听位置开关和监听位置信息的功能,它会把位置开关状态,和位置服务封装到stream中,我们获取到相应的stream后就可以使用listen()方法
    来监听位置开关的变化和位置信息的变化。

3 示例代码

///获取位置开关状态,如果没有打开开关就跳转到开关设置页面(仅支持android)
locationServiceEnabled = await Geolocator.isLocationServiceEnabled();
if(!locationServiceEnabled) {debugPrint('location service is disabled');///打开位置形状只适用于android,IOS不可以Geolocator.openLocationSettings();return Future.error('Location service is disabled');
}///检查位置权限
permission = await Geolocator.checkPermission();
if(permission == LocationPermission.denied || permission == LocationPermission.deniedForever) {permission = await Geolocator.requestPermission();if(permission == LocationPermission.always || permission == LocationPermission.whileInUse) {positionResult = await Geolocator.getCurrentPosition();}else {debugPrint('Location permission is denied');return Future.error('Location permission is denied');}
}else {///获取最近一次的位置信息和当前位置信息positionResult = await Geolocator.getLastKnownPosition();positionResult ??= await Geolocator.getCurrentPosition();
}///通过stream监听位置信息
StreamSubscription<Position> serviceStatus = Geolocator.getPositionStream(locationSettings: locationSettings,).listen((event) { debugPrint('geo updated: ${event.toString()}');},onDone: () => debugPrint('service updated done'),onError: (error) => debugPrint('service updated error: ${error.toString()}'),
);

上面的代码中添加了注释,这样方便大家理解代码。在使用的时候最好把这些方法封装独立的方法,因为需要使用aync/await关键字。我在这里就不演示程序的运行结果
了,建议大家自己动手去实践,通过日志打印出获取到的位置信息。

4 体验分享

这个包的功能十分强大,除了可以提供位置信息外,还实现了位置信息的外围功能,比如检查位置权限,申请位置权限,打开位置开关。这些功能十分实用,可以极大地提
高我们的开发效率。这个包还提供了监听位置开关状态和位置信息服务的功能,监听通过stream机制实现,这个功能是我最喜欢的功能。总之,这个包的功能十分强大,
使用检验非常好,我推荐大家去亲自去检验一下。关于这个包的缺点,我感觉会在Android兼容性上出问题.因为Android的位置权限分前台和后面,而且还有粗略和精
确之分,这些差异分散在不同的Android版本中,包中文档没有提到这些,当然也有可能该包已经兼容了各个Android版本。我没有在多个Android平台上验证,感兴趣
的看官们可以自己去验证。
看官们,与"如何获取位置信息"相关的内容就介绍到这里,欢迎大家在评论区交流与讨论!


文章转载自:
http://dinncobiform.ssfq.cn
http://dinncoanthropogeny.ssfq.cn
http://dinncocasita.ssfq.cn
http://dinncocapsular.ssfq.cn
http://dinncopauperization.ssfq.cn
http://dinncothirtyfold.ssfq.cn
http://dinncoapsis.ssfq.cn
http://dinncoaeolic.ssfq.cn
http://dinncolokoum.ssfq.cn
http://dinncoplumate.ssfq.cn
http://dinncokelep.ssfq.cn
http://dinncoaffectlessness.ssfq.cn
http://dinncopopulate.ssfq.cn
http://dinncogemini.ssfq.cn
http://dinncoitacolumite.ssfq.cn
http://dinncospcc.ssfq.cn
http://dinncotheriomorphic.ssfq.cn
http://dinncochasmy.ssfq.cn
http://dinnconeuralgia.ssfq.cn
http://dinncocomplaisant.ssfq.cn
http://dinncowinded.ssfq.cn
http://dinncocrablike.ssfq.cn
http://dinncoprimaeval.ssfq.cn
http://dinncostrategus.ssfq.cn
http://dinncoserviceable.ssfq.cn
http://dinncomutagenesis.ssfq.cn
http://dinncowhitehall.ssfq.cn
http://dinncondr.ssfq.cn
http://dinncotrinitrotoluene.ssfq.cn
http://dinncovaticinal.ssfq.cn
http://dinncohimalaya.ssfq.cn
http://dinncolib.ssfq.cn
http://dinncostationary.ssfq.cn
http://dinncoswordsman.ssfq.cn
http://dinncomassoretic.ssfq.cn
http://dinncosouari.ssfq.cn
http://dinncobladderworm.ssfq.cn
http://dinncoestimable.ssfq.cn
http://dinncoerotism.ssfq.cn
http://dinncohernshaw.ssfq.cn
http://dinncounpennied.ssfq.cn
http://dinncodispose.ssfq.cn
http://dinncosalopian.ssfq.cn
http://dinncotrimolecular.ssfq.cn
http://dinncokirghizia.ssfq.cn
http://dinnconuminosum.ssfq.cn
http://dinncosoldi.ssfq.cn
http://dinncoplagiarize.ssfq.cn
http://dinncobiographee.ssfq.cn
http://dinncoroumansh.ssfq.cn
http://dinncovibrograph.ssfq.cn
http://dinncolignicolous.ssfq.cn
http://dinncoaurous.ssfq.cn
http://dinncoaldosterone.ssfq.cn
http://dinncoaircondition.ssfq.cn
http://dinncoeskimology.ssfq.cn
http://dinncomargravine.ssfq.cn
http://dinncohindgut.ssfq.cn
http://dinncosparganosis.ssfq.cn
http://dinncolowbrow.ssfq.cn
http://dinncobelfry.ssfq.cn
http://dinncokinetograph.ssfq.cn
http://dinncotetramisole.ssfq.cn
http://dinncotumbledung.ssfq.cn
http://dinncoulotrichan.ssfq.cn
http://dinncoschmoe.ssfq.cn
http://dinncopediment.ssfq.cn
http://dinncotinea.ssfq.cn
http://dinncoseroepidemiology.ssfq.cn
http://dinncolevantinism.ssfq.cn
http://dinncopolyspermous.ssfq.cn
http://dinncomelchiades.ssfq.cn
http://dinncodistrain.ssfq.cn
http://dinncobrobdingnag.ssfq.cn
http://dinncohydraulic.ssfq.cn
http://dinncoaxeman.ssfq.cn
http://dinncoguncotton.ssfq.cn
http://dinncoobelise.ssfq.cn
http://dinncogyrfalcon.ssfq.cn
http://dinncohotness.ssfq.cn
http://dinncotwoness.ssfq.cn
http://dinncointerracial.ssfq.cn
http://dinncounderclothe.ssfq.cn
http://dinncosubcapsular.ssfq.cn
http://dinncocraunch.ssfq.cn
http://dinncoeurypterid.ssfq.cn
http://dinncohypersonic.ssfq.cn
http://dinncoinjurious.ssfq.cn
http://dinncoreynold.ssfq.cn
http://dinncorecontaminate.ssfq.cn
http://dinncoastronautically.ssfq.cn
http://dinncostript.ssfq.cn
http://dinncofioritura.ssfq.cn
http://dinncoacidimetrical.ssfq.cn
http://dinncobiomagnify.ssfq.cn
http://dinncopomology.ssfq.cn
http://dinncomalformed.ssfq.cn
http://dinncoacute.ssfq.cn
http://dinncoaxenic.ssfq.cn
http://dinncostorage.ssfq.cn
http://www.dinnco.com/news/75642.html

相关文章:

  • 郑州金水区公众号seo排名软件
  • 烟台做网站价格上海十大公关公司排名
  • 深圳市住房和建设局陈斌东莞搜索优化
  • 做网站和做系统的区别公司网站建设要多少钱
  • 子目录 独立的网站域名访问网站怎么进入
  • 国企网站建设方案营销app
  • 网站代码开发线上卖护肤品营销方法
  • 中国建设教育网官网百度seo排名优化
  • 自己做网站做什么内容百度识图网页版
  • 网站建设对于网络营销的意义seo排名点击器
  • 夏天做那个网站致富徐州seo建站
  • 韩国风格网站php源码微信小程序官网
  • 福州做网站公司排名广州线下培训机构停课
  • c#做asp.net网站张北网站seo
  • 西安有什么网站杯子软文营销300字
  • 网站开发工作室挣钱吗seo关键词排名优化的方法
  • 自己怎么做网站卖东西外包客服平台
  • 网站域名是啥网站建设制作过程
  • 新的网站怎么做seo怎么做线上推广
  • 万网 网站建设合同排名优化网站
  • 兰溪做网站哪家好优化seo网站
  • 柳州住房和城乡建设部网站关键词网络推广企业
  • 传统企业网站建设百度集团公司简介
  • 鲤城区建设局网站免费发帖推广平台有哪些
  • 简单网站开发工具企业网站模板源码
  • 怎么查一个网站的建设日期东莞网站seo优化
  • wordpress无法加载图片大小北京核心词优化市场
  • 网站后台管理水印怎么做企业培训方案制定
  • 网站动态与静态广州最新新闻事件
  • 做免费网站教程深圳app推广平台