%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/riacommer/public_html/admin/vendor/gmaps/test/spec/
Upload File :
Create Path :
Current File : /home/riacommer/public_html/admin/vendor/gmaps/test/spec/ControlSpec.js

describe('Creating custom map controls', function () {
  var map;

  beforeEach(function() {
    map = map || new GMaps({
      el : '#basic-map',
      lat: -12.0433,
      lng: -77.0283,
      zoom: 12
    });
  });

  it('should add default styles for the control', function () {
    map.addControl({
      position: 'top_right',
      content: 'Geolocate'
    });

    expect(map.controls[0].style.fontFamily).not.toEqual('');
  });

  it('should leave off default styles if requested', function () {
    map.addControl({
      position: 'top_right',
      disableDefaultStyles: true,
      content: '<i class="icon"></i>'
    });

    expect(map.controls[1].style.fontFamily).toEqual('');
  });

});

Zerion Mini Shell 1.0