This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 軸回転用の公式 | |
| // http://fnorio.com/0098spherical_trigonometry1/spherical_trigonometry1.html | |
| // http://ikeryou.hatenablog.com/entry/2018/01/07/104729 | |
| // | |
| // @param {object} obj = { | |
| // x, y, z, scale, | |
| // distX, distY | |
| // } | |
| // | |
| // 引数のangleには角度というかスピードが入る。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| header("Content-Type: application/json; charset=utf-8"); | |
| class Ogp_getter { | |
| private $url = null; | |
| function __construct($url_strings) { | |
| $this->url = $url_strings; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import loadGoogleMapsAPI from 'load-google-maps-api'; | |
| import Util from './Util.js'; | |
| import googleMapsStyle from './googleMapsStyle.js'; | |
| // google mainImg_philosophy-sp api | |
| // target => strings (挿入するDOM) | |
| // mapSettingObj => object = { | |
| // center: {lat, lng} | |
| // zoom | |
| // } | |
| export default class GoogleMapsGenerator { |