New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ti.googlemaps

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ti.googlemaps - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

.npmignore

29

index.js

@@ -1,6 +0,9 @@

var GMSMapView = require('GoogleMaps/GMSMapView'),
GMSServices = require('GoogleMaps/GMSServices'),
var GMSServices = require('GoogleMaps/GMSServices'),
kGMSTypeNormal = require('GoogleMaps').kGMSTypeNormal,
kGMSTypeSatellite = require('GoogleMaps').kGMSTypeSatellite,
kGMSTypeTerrain = require('GoogleMaps').kGMSTypeTerrain,
UIScreen = require('UIKit/UIScreen'),
UIViewAutoresizingNone = require('UIKit').UIViewAutoresizingNone;
kGMSTypeHybrid = require('GoogleMaps').kGMSTypeHybrid,
kGMSTypeNone = require('GoogleMaps').kGMSTypeNone,
View = require('./view');
Annotation = require('./annotation');

@@ -12,9 +15,17 @@ exports.setAPIKey = function(apiKey) {

exports.createView = function(params) {
var mapView = GMSMapView.alloc().initWithFrame(UIScreen.mainScreen.applicationFrame);
// mapView.setDelegate(GoogleMapsDelegate);
mapView.setAutoresizingMask(UIViewAutoresizingNone);
return mapView;
return new View(params);
};
exports.createAnnotation = function(params) {
return new Annotation(params);
};
exports.MAP_TYPE_NORMAL = kGMSTypeNormal;
exports.MAP_TYPE_SATELLITE = kGMSTypeSatellite;
exports.MAP_TYPE_TERRAIN = kGMSTypeTerrain;
exports.MAP_TYPE_HYBRID = kGMSTypeHybrid;
exports.MAP_TYPE_NONE = kGMSTypeNone;
{
"name": "ti.googlemaps",
"version": "1.0.0",
"version": "1.0.1",
"description": "Use the GoogleMaps SDK in Axway Titanium with Hyperloop.",

@@ -17,3 +17,11 @@ "main": "index.js",

"author": "Hans Knöchel",
"license": "MIT"
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hansemannn/googlemaps-hyperloop.git"
},
"bugs": {
"url": "https://github.com/hansemannn/googlemaps-hyperloop/issues"
},
"homepage": "https://github.com/hansemannn/googlemaps-hyperloop#readme"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc