optimizely-location
v0.0.3
Published
Use Optimizely to determine site-visitor geolocation
Downloads
4
Readme
Optimizely Location
Unlike the rest of the Optimizely data object, optimizely.data.visitor.location
is not immediately ready when the Optimizely page snippet has loaded since it has to fetch the data from a 3rd party.
Setup
Before this script can work, there needs to be an Optimizely experiment with a geo-targeted audience condition running on your site.
- Create an Optimizely experiment using your site's URL
- Add an audience with a Location condition
- Change the URL Targeting setting to
null
- Save and start the experiment
Note, by setting the URL Targeting to null, you are ensuring that the experiment will not use any of your Optimizely monthly uniques.
You can check to see if location is now enabled by inspecting element on your site and typing the following into the Console:
window.optimizely.data.visitor.location
This should return an object with location data. If it is null
, please ensure that you have followed the above steps correctly.
Usage
Install from npm, or add optimizely-location.js after your Optimizely snippet
npm install optimizely-location --save
This script assigns a Promise called optimizelyLocation
to the global scope that will resolve when the user's location is ready. If you installed from npm, import the script:
import optimizelyLocation from 'optimizely-location';
Then wrap your location-based code in the Promise .then()
syntax
window.optimizelyLocation.then((res) => {
// your user-location based code, eg:
console.log(res); // will log something like {continent: "NA", country: "US", region: "CA", city: "SANFRANCISCO"}
});
This promise will try to find the user location in intervals of 100 milliseconds for 2 seconds before rejecting.