Skip to content

Latest commit

 

History

History
72 lines (56 loc) · 2.23 KB

geolocationRtdProvider.md

File metadata and controls

72 lines (56 loc) · 2.23 KB
layout title display_name description page_type module_type module_code enable_download sidebarType
page_v2
Geolocation Module
Geolocation
Real Time Geolocation
module
rtd
geolocationRtdProvider
true
1

Geolocation Module

Overview

The Geolocation module lets publishers get user's precise location with their permissions. The first permission that is needed is directly asked from site's navigator alert. Then if site has installed a CMP (Consent Management Platform), this module checks the geolocation permission from consent data. The module provides Geolocation coords using the Geolocation API.

Integration

  1. Build the geolocation RTD module into the Prebid.js package with:

    gulp build --modules=geolocationRtdProvider.js,...
  2. Use setConfig to instruct Prebid.js to initilize the geolocation module, as specified below.

Configuration

This module is configured as part of the realTimeData.dataProviders object:

pbjs.setConfig({
    realTimeData: {
        dataProviders: [{
            "name": "geolocation",
            "waitForIt": true,
            "params": {
                "requestPermission": true
            }
        }]
    }
});

Parameter details:

{: .table .table-bordered .table-striped }

Name Type Description Notes
name String Real time data module name Required, always 'geolocation'
waitForIt Boolean Required, always true
params Object
params.requestPermission Boolean Customer permission Required, always true

The Geolocation is set in ortb2Fragments.global.device.geo in requestBidsObject and looks like this:

{
    lat: 1,     // geolocation.coords.latitude
    lon: 1,     // geolocation.coords.longitude
    lastfix: 1, // geolocation.timestamp
    type: 1
}

This data can be accessed from a bid adapter in one of several ways:

  1. Read reqBidsConfigObj.ortb2Fragments.global.device.geo directly
  2. Just merge everything in ortb2Fragments
  3. Start utilizing the ortbConverter library