
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
cordova-plugin-ar
Advanced tools
A Cordova plugin for implementing Augmented Reality apps.
This plugin makes it easy to display AR overlays onto the device's live camera feed. Currently supported features:
cordova plugins add cordova-plugin-ar \
--variable IOS_PERMISSION_DESCRIPTION="Description when requestion Location Permission from user (on iOS)"
This plugin is published on NPM. You should be using Cordova CLI version 5 or above.
cloudSky.ar.canDoAr(
function (canDoAr) {
// canDoAr == true if we can do AR on this device, false otherwise.
},
function () {
// Error retrieving AR capability.
// Optional.
}
)
cloudSky.ar.showGeolocationsForSelection(
{
maxDistance: 1000, // OPTIONAL, defaults to 1000
geoLocations: [
{
latitude: 1.2345,
longitude: 101.2345678,
name: "Location name"
},
...
]
},
function (location) {
// location is a new object with the same latitude, longitude, and name
// as the location which the user tapped on.
// If the AR view was dismissed using the Cancel button,
// location === undefined.
},
function () {
// Error launching the AR view.
// Optional.
}
)
Where:
maxDistance
is the maximum distance from the device's current coordinates to
a geolocation before it is no longer displayed.geoLocations
is an array of locations to display. Any location not matching
the given format will be ignored / not displayed.iOS native AR implementation is based on my fork of @chrjs's (fork of the) iPhone AR Kit.
FAQs
A Cordova plugin for implementing Augmented Reality apps.
We found that cordova-plugin-ar 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.