ARCarMovement

This is navigation example on google map. Here Marker move as vehicles moves with turns as uber does in their app. Using old and new coordinates animating bearing value the markers are moving.

Github星跟踪图

ARCarMovement

CI Status
Version
License
Platform

This is navigation example on google map. Here Marker move as vehicles moves with turns as uber does in their app. Using old and new coordinates animating bearing value the markers are moving.

Getting Started

To run the project, clone the repo, and run pod install from the ARCarMovement directory first.

Installation

ARCarMovement is available through CocoaPods. To install
it, simply add the following line to your Podfile:

pod 'ARCarMovement'

Prerequisites

To build a project using the ARCarMovement for iOS, you need version 8.0 or later of Xcode.

Usage

Add your Google Maps API key to your AppDelegate.m as follows:

[GMSServices provideAPIKey:@"YOUR_API_KEY"];

For Objective-C Project:

  • Drag and drop the ARCarMovement.swift into your project.
  • A popup window will appear and ask "Would You like to configure an Objective-C bridging Header".
  • Choose Yes.
  • Click on your Xcode Project file (optional)
  • Click on Build Settings
  • Find the Search bar and search for Defines Module.
  • Change the value to Yes.
  • In App delegate or where you want to import, add the following : #import "ARCarMovement-Swift.h" NOTE: #import "< Defined Module Name >-Swift.h"

Add the following import statement to your ViewController.h as follows:

#import "ARCarMovement-Swift.h" // NOTE: #import "<Your Defined Module Name>-Swift.h"

Create a ARCarMovement property in ViewController.m:

@property (strong, nonatomic) ARCarMovement *moveMent;

//alloc
//
self.moveMent = [[ARCarMovement alloc]init];
self.moveMent.delegate = self;

The required public method is

/**
*  assign the specified details to be work with animation for the Marker.
*/
public func ARCarMovement(marker: GMSMarker, oldCoordinate: CLLocationCoordinate2D, newCoordinate:CLLocationCoordinate2D, mapView: GMSMapView, bearing: Float) {
  //code here
}

The required delegate method is

/**
*  Tells the delegate that the specified marker will be work with animation.
*/
- (void)ARCarMovementMoved:(GMSMarker * _Nonnull)Marker;

For Swift project, just drag and drop the ARCarMovement.swift into your project.

Author

Antony Raphel - Initial work - ARCarMovement

Created by Antony Raphel, @antonypr717 on 06/05/17.

Contact

Share feedbacks and ideas to improve this project, I would love to hear them out. You can also follow me on @antonypr717.

License

ARCarMovement is available under the MIT license. See the LICENSE file for more info.

主要指标

概览
名称与所有者antonyraphel/ARCarMovement
主编程语言Objective-C
编程语言Objective-C (语言数: 4)
平台
许可证MIT License
所有者活动
创建于2017-05-10 05:06:34
推送于2019-10-28 14:40:41
最后一次提交2019-10-28 20:01:53
发布数9
最新版本名称2.1.1 (发布于 )
第一版名称v1.0 (发布于 )
用户参与
星数140
关注者数11
派生数35
提交数78
已启用问题?
问题数9
打开的问题数5
拉请求数12
打开的拉请求数0
关闭的拉请求数1
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?