Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
react-geocode
Advanced tools
A module to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.
Despite its name, this project
_ , _ __ _ __
' ) / ' ) ) _/_ / _/_ / _/_ / ' ) ) _/_
/--/ __. _ / / __ / /_ o ____ _, / __ __/ __ , , , o / /_ /--' _ __. _. /
/ (_(_/|_/_)_ / (_(_)<__/ /_<_/ / <_(_)_ <__(_) (_/_(_) (_(_/_<_<__/ /_ / \_</_(_/|_(__<__
/|
|/
A module to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.
This module uses Google Maps Geocoding API and requires an API key for purposes of quota management. Please check this link out to obtain your API key.
yarn add react-geocode
or
npm install --save react-geocode
import {
setKey,
setDefaults,
setLanguage,
setRegion,
fromAddress,
fromLatLng,
fromPlaceId,
setLocationType,
geocode,
RequestType,
} from "react-geocode";
// Set default response language and region (optional).
// This sets default values for language and region for geocoding requests.
setDefaults({
key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", // Your API key here.
language: "en", // Default language for responses.
region: "es", // Default region for responses.
});
// Alternatively
// Set Google Maps Geocoding API key for quota management (optional but recommended).
// Use this if you want to set the API key independently.
setKey("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); // Your API key here.
// Set default response language (optional).
// This sets the default language for geocoding responses.
setLanguage("en"); // Default language for responses.
// Set default response region (optional).
// This sets the default region for geocoding responses.
setRegion("es"); // Default region for responses.
// Get latitude & longitude from address.
fromAddress("Eiffel Tower")
.then(({ results }) => {
const { lat, lng } = results[0].geometry.location;
console.log(lat, lng);
})
.catch(console.error);
// Get address from latitude & longitude.
fromLatLng(48.8583701, 2.2922926)
.then(({ results }) => {
const { lat, lng } = results[0].geometry.location;
console.log(lat, lng);
})
.catch(console.error);
// Get latitude & longitude from place_id.
fromPlaceId("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
.then(({ results }) => {
const { lat, lng } = results[0].geometry.location;
console.log(lat, lng);
})
.catch(console.error);
// Alternatively, use geocode function for consistency
geocode(RequestType.ADDRESS, "Eiffel Tower")
.then(({ results }) => {
const { lat, lng } = results[0].geometry.location;
console.log(lat, lng);
})
.catch(console.error);
// Set default location_type filter (optional).
// This sets the default location type filter to "ROOFTOP" for geocoding responses.
setLocationType("ROOFTOP");
// Get address from latitude & longitude.
geocode(RequestType.LATLNG, "48.8583701,2.2922926")
.then(({ results }) => {
const address = results[0].formatted_address;
console.log(address);
})
.catch(console.error);
// Get formatted address, city, state, country from latitude & longitude.
geocode(RequestType.LATLNG, "48.8583701,2.2922926", {
location_type: "ROOFTOP", // Override location type filter for this request.
enable_address_descriptor: true, // Include address descriptor in response.
})
.then(({ results }) => {
const address = results[0].formatted_address;
const { city, state, country } = results[0].address_components.reduce(
(acc, component) => {
if (component.types.includes("locality"))
acc.city = component.long_name;
else if (component.types.includes("administrative_area_level_1"))
acc.state = component.long_name;
else if (component.types.includes("country"))
acc.country = component.long_name;
return acc;
},
{}
);
console.log(city, state, country);
console.log(address);
})
.catch(console.error);
// Override default options for geocode requests.
// These examples demonstrate how to override default settings for specific requests.
const addressResponse = await geocode(RequestType.ADDRESS, "Eiffel Tower", {
language: "en",
region: "sp",
});
const placeIdResponse = await geocode(
RequestType.PLACE_ID,
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
{ language: "en", region: "sp" }
);
const latlngResponse = await geocode(
RequestType.LATLNG,
"48.8583701,2.2922926",
{ language: "en", region: "sp", enable_address_descriptor: true }
);
Method | Params | Return | Type | Description |
---|---|---|---|---|
setKey | key | - | function | Your application's API key. This key identifies your application for purposes of quota management. Learn how to get a key. |
setLanguage | language | - | function | Specify the language of the parsed address. List of available language codes. |
setComponents | components | - | function | A components filter with elements separated by a pipe ( | ). See more information about component filtering. |
setRegion | region | - | function | Specify the region of the parsed address. For more information, see Region Biasing. |
setBounds | bounds | - | function | The bounding box of the viewport within which to bias geocode results more prominently. For more information, see Viewport Biasing. |
setLocationType | location_type | - | function | A filter of one or more location types, separated by a pipe ( | ). The following values are supported: ROOFTOP , RANGE_INTERPOLATED , GEOMETRIC_CENTER , and APPROXIMATE . |
setResultType | result_type | - | function | A filter of one or more address types, separated by a pipe ( | ). |
setOutputFormat | outputFormat (OutputFormat) | - | function | Sets the desired output format for geocoding requests. The format can be either XML or JSON . |
enableAddressDescriptor | enableAddressDescriptor (boolean) | - | function | Sets whether to include an address descriptor in the reverse geocoding response. |
geocode | requestType (RequestType | string), value (string), options? (GeocodeOptions) | response | function | Get latitude & longitude from an address. Optional params. |
fromLatLng | latitude , longitude , *apiKey , *language , *region | response | function | Get address from latitude & longitude. Optional params. |
fromAddress | address , *apiKey , *language , *region | response | function | Get latitude & longitude from address. Optional params. |
fromPlaceId | placeId , *apiKey , *language , *region | response | function | Get latitude & longitude from place id. Optional params. |
Sends a geocoding request to the Google Geocoding API for a given address. To geocode an address, use the geocode function:
import { geocode, RequestType } from "react-geocode";
const address = "1600 Amphitheatre Parkway, Mountain View, CA";
geocode(RequestType.ADDRESS, address)
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});
RequestType
| string
): Identifier to specify the type of request (place_id
, address
, latlng
, components
etc).string
): The value to geocode. This can be an address, latitude and longitude (lat,lng
), or a place ID.object
): Additional options for the geocoding request.
string
): API key for Google Geocoding API.string
): Language code for the response.string
): Region code for the response.string
): Component filtering for the response.string
): Bounding box for the response.string
): Result type filtering for the response.string
): Location type filtering for the response.You can also pass additional options to the geocode
function:
geocode("latlng", "48.8583701,2.2922926", {
key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
language: "en",
region: "us",
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});
The geocode
function returns a Promise that resolves with the geocoding response object, or rejects with an error if the request fails.
A Promise that resolves with a GeocodeResponse
object, which has the following properties:
This project is licensed under the MIT License.
Make sure to replace "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" with your actual API key from the Google Cloud Console. Also, feel free to modify the examples and add any necessary configurations based on your specific requirements.
Let me know if you need any further assistance!
FAQs
A module to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.
We found that react-geocode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.