Skip to content

Gett

Gett 是一款网约车应用。Protocol Launcher 可以生成 Gett 官方 deeplink,用于打开 App 和发起行程请求。

使用方式

有两种使用此库的方式:

  • 按需导入(On-Demand):从子路径导入支持 tree-shaking,保持较小的打包体积。
  • 完整导入(Full Import):从根包导入更方便,但会包含所有应用模块。

生产构建建议选择按需导入;快速脚本或演示可以使用完整导入。

选择安装方式

按需加载
推荐使用。生产环境优化。
全量导入
使用便捷。适合快速脚本。

注意事项

Gett 文档说明 gett:// scheme 可用于检测或打开 App,gett://order? 用于行程请求。Gett 说明 deeplink 支持 Android 和 iOS 客户端。

clientIdproductId 会映射到 client_idproduct_id。上车点字段会映射到 pickuppickup_latitudepickup_longitudepickup_poi_name;下车点字段会映射到 dropoffdropoff_latitudedropoff_longitude。POI 名称和司机备注会由 helper 进行 URL 编码。

POI 名称只暴露 pickupPoiName,因为 Gett 示例明确给出了 pickup_poi_name。Gett 表格里的下车点 POI 行没有发布为可直接复制核对的精确查询参数,因此此模块不猜测对应字段。

当需要把行程某一端设置为官方 my_location 值时,使用 rideRequestWithCurrentPickup()rideRequestWithCurrentDropoff()

打开 Gett

On-Demand
ts
import { open } from 'protocol-launcher/gett'

const url = open()

行程请求

On-Demand
ts
import { rideRequest } from 'protocol-launcher/gett'

const url = rideRequest({
  pickupLatitude: 10.123456,
  pickupLongitude: 20.123456,
  dropoffLatitude: 10.654321,
  dropoffLongitude: 20.654321,
  productId: '00000000-0000-4000-8000-000000000000',
})

当前上车点

On-Demand
ts
import { rideRequestWithCurrentPickup } from 'protocol-launcher/gett'

const url = rideRequestWithCurrentPickup({
  dropoffLatitude: 10.654321,
  dropoffLongitude: 20.654321,
  productId: '00000000-0000-4000-8000-000000000000',
})

当前下车点

On-Demand
ts
import { rideRequestWithCurrentDropoff } from 'protocol-launcher/gett'

const url = rideRequestWithCurrentDropoff({
  pickupLatitude: 10.123456,
  pickupLongitude: 20.123456,
})

上车点 POI 与备注

On-Demand
ts
import { rideRequest } from 'protocol-launcher/gett'

const url = rideRequest({
  pickupLatitude: 10.123456,
  pickupLongitude: 20.123456,
  pickupPoiName: 'Example Pickup',
  note: 'Meet by entrance B',
})

官方文档