Can I create a property that is named "name" and add it to the instance I created from this layer?
var osm = new ol.layer.Tile({
name: "pepe",
source: new ol.source.OSM()
})
What I want to do is differentiate this layer from anothe...
I'm new with vmix and I just started working with a local tv channel and which asks me as their web developer to transmit the program over the internet without using a third party like ustream or livestream, that is, a free player.
I would ap...
I have created several sprites with phaser and I have stored them in an array.
function createShip(x,y,angle,ship){
var s = game.add.sprite(x,y,ship);
s.rotation = angle;
s.anchor.setTo(0.5,0.5);...
I want to make my grid does not come from html but to reflect the grid created in js that looks in html, vamso, to have empty html. since I want to learn more to use arrays than to focus on html. I do not see how I can make any suggestions? Than...
I try to consume it in the following way
function listar( $scope, $http, cliente) {
$http({
method: "POST",
data: cliente,
url: "http://ver.moz.com.mx/movil//Servicios.svc/getEstadosReferenciasPorClienteDetalle" + cliente+'500...
Hi I need to read a json file in angular using a service, using the http service
app.factory('Expenses', function($http){
var service = {};
service.entries = [];
$http.get('data/get_all.json').then(function (data){
service.entr...
I would like to know if I can simulate the use of the print screen key (the one we press to take screenshots) with the browser, either with JavaScript or PHP.
I have already used the html2canvas plugin, but the screenshot is distorted. This i...
I have a lot of time involved with this code, that's why I use forums,
I want to do as a movie guide but with the information taken from an API, I know I have two Ajax calls One that fills my list of characters (10) Now when I click on each of t...
I am very lost with this project and I need a guide.
I'm filling a list with characters whose information comes from an Api, these are 10, within this information is the link of the movies in which they appear, my idea is to click on each of...